mirror of https://github.com/AxioDL/metaforce.git
24 lines
448 B
C++
24 lines
448 B
C++
#ifndef __RETRO_CACTOR_HPP__
|
|
#define __RETRO_CACTOR_HPP__
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
class CTransform;
|
|
class CModelData;
|
|
class CMaterialList;
|
|
class CActorParameters;
|
|
|
|
class CActor : public CEntity
|
|
{
|
|
public:
|
|
CActor(TUniqueId, bool, const std::string&, const CEntityInfo&,
|
|
const CTransform&, const CModelData&, const CMaterialList&,
|
|
const CActorParameters&, TUniqueId);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CACTOR_HPP__
|