blob: 6f484c022ee5e7229e75bf7519484408302ae945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "core_module.h"
using namespace AEThreading;
namespace AsuraEngine
{
void CoreModule::Initialize(Luax::LuaxState& state)
{
// Threading
LUAX_REGISTER_FACTORY(state, ThreadEx);
}
void CoreModule::Finalize(Luax::LuaxState& state)
{
}
}
|