mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 01:47:43 +00:00
more classes added
This commit is contained in:
23
Runtime/CActor.hpp
Normal file
23
Runtime/CActor.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user