blob: 406d46e8ffa6eb524068d59520d3ab0eec96ef16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _ENGINE_H
#define _ENGINE_H
#include "stdafx.h"
class Engine : public IO_Module
{
public:
Engine()
{
}
Engine(uint32 engineId)
{
this->moduleId = engineId;
}
};
#endif
|