blob: f335ec5cf567fcd09894985afd9cd49226bf4454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "utils_module.h"
using namespace AsuraEngine::IO;
namespace AsuraEngine
{
void UtilsModule::Initialize(Luax::LuaxState& state)
{
// IO
LUAX_REGISTER_SINGLETON(state, Filesystem);
LUAX_REGISTER_FACTORY(state, DataBuffer);
LUAX_REGISTER_FACTORY(state, FileData);
LUAX_REGISTER_FACTORY(state, File);
}
void UtilsModule::Finalize(Luax::LuaxState& state)
{
}
}
|