0ad/source/tools/rmgen/object.h

15 lines
293 B
C
Raw Normal View History

2005-07-30 21:22:16 +02:00
#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