mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 13:27:13 +01:00
16 lines
481 B
C++
16 lines
481 B
C++
// ------------------------------------------------------------------------------------------------
|
|
#include "Library/Worker/Job.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ================================================================================================
|
|
void Register_Job(HSQUIRRELVM vm)
|
|
{
|
|
Table jbns(vm);
|
|
|
|
RootTable(vm).Bind(_SC("SqJob"), jbns);
|
|
}
|
|
|
|
} // Namespace:: SqMod
|