iw5-mod/src/module/ceg.cpp

18 lines
224 B
C++
Raw Normal View History

2018-12-23 17:21:30 -05:00
#include <std_include.hpp>
#include "loader/module_loader.hpp"
class ceg final : public module
{
public:
ceg()
{
OutputDebugStringA("+ CEG\n");
}
~ceg()
{
OutputDebugStringA("- CEG\n");
}
};
REGISTER_MODULE(ceg)