19 lines
206 B
C++
19 lines
206 B
C++
#ifndef _ENGINE_H
|
|
#define _ENGINE_H
|
|
|
|
#include "stdafx.h"
|
|
|
|
class Engine : public IO_Module
|
|
{
|
|
public:
|
|
Engine()
|
|
{
|
|
}
|
|
|
|
Engine(uint32 engineId)
|
|
{
|
|
this->moduleId = engineId;
|
|
}
|
|
};
|
|
|
|
#endif
|