1
0
forked from 0ad/0ad
0ad/source/terrain/Unit.h
MarkT 6d5afc10ff Added PASAP entity systems
This was SVN commit r246.
2004-05-21 23:46:16 +00:00

17 lines
215 B
C++
Executable File

#ifndef _UNIT_H
#define _UNIT_H
class CModel;
class CObjectEntry;
class CUnit
{
public:
// object from which unit was created
CObjectEntry* m_Object;
// object model representation
CModel* m_Model;
};
#endif