12 lines
126 B
C
12 lines
126 B
C
#ifndef Entity_h__
|
|
#define Entity_h__
|
|
|
|
typedef unsigned int EntityID;
|
|
|
|
struct Entity
|
|
{
|
|
unsigned int EntityID = 0;
|
|
|
|
};
|
|
|
|
#endif |