mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 15:07:43 +00:00
Initial CPatterned classes
This commit is contained in:
45
Runtime/World/CPatterned.hpp
Normal file
45
Runtime/World/CPatterned.hpp
Normal file
@@ -0,0 +1,45 @@
|
||||
#ifndef __URDE_CPATTERNED_HPP__
|
||||
#define __URDE_CPATTERNED_HPP__
|
||||
|
||||
#include "CAi.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CPatternedInfo;
|
||||
|
||||
enum class EBodyType
|
||||
{
|
||||
Two = 2
|
||||
};
|
||||
|
||||
class CPatterned : public CAi
|
||||
{
|
||||
public:
|
||||
enum class EUnknown
|
||||
{
|
||||
TwentyThree = 23
|
||||
};
|
||||
enum class EFlavorType
|
||||
{
|
||||
Zero = 0
|
||||
};
|
||||
enum class EMovementType
|
||||
{
|
||||
One = 1
|
||||
};
|
||||
enum class EColliderType
|
||||
{
|
||||
Ground = 0,
|
||||
Flyer = 1
|
||||
};
|
||||
private:
|
||||
public:
|
||||
CPatterned(EUnknown, TUniqueId, const std::string& name, EFlavorType, const CEntityInfo& info,
|
||||
const zeus::CTransform& xf, CModelData&& mData,
|
||||
const CPatternedInfo& pInfo, EMovementType, EColliderType,
|
||||
EBodyType, const CActorParameters& actParms);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CPATTERNED_HPP__
|
||||
Reference in New Issue
Block a user