1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-06 08:57:11 +02:00

Separate worker and parameter to their own sources.

This commit is contained in:
Sandu Liviu Catalin
2020-09-06 21:45:32 +03:00
parent 31af9efe94
commit 38b874f444
8 changed files with 532 additions and 511 deletions

View File

@ -0,0 +1,15 @@
// ------------------------------------------------------------------------------------------------
#include "Library/Worker/Job.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ================================================================================================
void Register_Job(HSQUIRRELVM vm)
{
Table jbns(vm);
RootTable(vm).Bind(_SC("SqJob"), jbns);
}
} // Namespace:: SqMod