blob: 5901fd53dc04d03ec0e51440bbbce4e5b8865ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __ASURA_ENGINE_SIMCLASS_H__
#define __ASURA_ENGINE_SIMCLASS_H__
namespace AsuraEngine
{
///
///
///
class SimClass
{
public:
SimClass() {};
virtual ~SimClass() {};
};
}
#endif
|