18 lines
224 B
C++
18 lines
224 B
C++
|
#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)
|