mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
16 lines
231 B
C++
Executable file
16 lines
231 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
|