Torque3D/Templates/BaseGame/game/data/ExampleModule/source/ExampleModule.cpp

19 lines
307 B
C++
Raw Normal View History

#include "core/module.h"
#include "console/engineAPI.h"
MODULE_BEGIN(ExampleModule_Module)
MODULE_INIT_AFTER(Sim)
MODULE_SHUTDOWN_BEFORE(Sim)
MODULE_INIT
{
// Setup anything needed when the engine initializes here
}
MODULE_SHUTDOWN
{
// Cleanup anything that was initialized before here
}
MODULE_END;