mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 03:47:43 +00:00
Various imps and minor fixes
This commit is contained in:
36
Runtime/World/CScriptPlayerStateChange.hpp
Normal file
36
Runtime/World/CScriptPlayerStateChange.hpp
Normal file
@@ -0,0 +1,36 @@
|
||||
#ifndef __URDE_CSCRIPTPLAYERSTATECHANGE_HPP__
|
||||
#define __URDE_CSCRIPTPLAYERSTATECHANGE_HPP__
|
||||
|
||||
#include "World/CEntity.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
class CScriptPlayerStateChange : public CEntity
|
||||
{
|
||||
public:
|
||||
enum class EControl
|
||||
{
|
||||
Unfiltered,
|
||||
Filtered
|
||||
};
|
||||
enum class EControlCommandOption
|
||||
{
|
||||
Unfiltered,
|
||||
Filtered
|
||||
};
|
||||
private:
|
||||
u32 x34_itemType;
|
||||
u32 x38_itemCount;
|
||||
u32 x3c_itemCapacity;
|
||||
EControl x40_ctrl;
|
||||
EControlCommandOption x44_ctrlCmdOpt;
|
||||
public:
|
||||
CScriptPlayerStateChange(TUniqueId, const std::string&, const CEntityInfo&, bool, u32, u32, u32, EControl,
|
||||
EControlCommandOption);
|
||||
void Accept(IVisitor& visit);
|
||||
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif // __URDE_CSCRIPTPLAYERSTATECHANGE_HPP__
|
||||
Reference in New Issue
Block a user