summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/engine.h
blob: 0b8bfac3827af738b1174c0687199e31c5b51554 (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