Added ServerProcess to BaseMod coding

Required for new T2-CPP mods now.
This commit is contained in:
Robert MacGregor 2016-02-23 02:22:07 -05:00
parent bdca76020c
commit 0a1e4da05d

View file

@ -5,6 +5,11 @@ extern "C"
{
__declspec(dllexport) void ModInitialize(void)
{
return;
}
__declspec(dllexport) void ServerProcess(unsigned int deltaTime)
{
}
}