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