18 lines
218 B
C++
18 lines
218 B
C++
|
#include <std_include.hpp>
|
||
|
#include "loader/module_loader.hpp"
|
||
|
|
||
|
class dw final : public module
|
||
|
{
|
||
|
public:
|
||
|
dw()
|
||
|
{
|
||
|
OutputDebugStringA("+ DW\n");
|
||
|
}
|
||
|
|
||
|
~dw()
|
||
|
{
|
||
|
OutputDebugStringA("- DW\n");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
REGISTER_MODULE(dw)
|