1
0
forked from 0ad/0ad
0ad/source/tools/rmgen/entity.h

15 lines
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