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

Create the worker lib.

Just an empty file. Placeholder for a future prototype.
This commit is contained in:
Sandu Liviu Catalin
2020-09-04 23:59:02 +03:00
parent 8a12fa17e8
commit 5782b598e5
4 changed files with 22 additions and 0 deletions

13
module/Library/Worker.cpp Normal file
View File

@ -0,0 +1,13 @@
// ------------------------------------------------------------------------------------------------
#include "Library/Worker.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ================================================================================================
void Register_Worker(HSQUIRRELVM vm)
{
}
} // Namespace:: SqMod

View File

@ -0,0 +1,6 @@
#pragma once
// ------------------------------------------------------------------------------------------------
#include "Base/Shared.hpp"
// ------------------------------------------------------------------------------------------------