mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 14:23:56 -07:00
15 lines
No EOL
293 B
C++
15 lines
No EOL
293 B
C++
#ifndef __ENTITY_H__
|
|
#define __ENTITY_H__
|
|
|
|
class Entity {
|
|
public:
|
|
std::string type; // called "template" in XML?
|
|
int player;
|
|
float x, y, z;
|
|
float orientation;
|
|
|
|
Entity();
|
|
Entity(const std::string& type, int player, float x, float y, float z, float orientation);
|
|
};
|
|
|
|
#endif |