iw5-mod/src/module/dw.cpp

18 lines
218 B
C++
Raw Normal View History

2018-12-23 17:21:30 -05:00
#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)