metaforce/Runtime/World/CScriptPlayerStateChange.hpp

28 lines
751 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-07-30 11:00:30 +00:00
#include <string_view>
#include "Runtime/GCNTypes.hpp"
#include "Runtime/World/CEntity.hpp"
2017-07-30 11:00:30 +00:00
2021-04-10 08:42:06 +00:00
namespace metaforce {
2018-12-08 05:30:43 +00:00
class CScriptPlayerStateChange : public CEntity {
2017-07-30 11:00:30 +00:00
public:
2018-12-08 05:30:43 +00:00
enum class EControl { Unfiltered, Filtered };
enum class EControlCommandOption { Unfiltered, Filtered };
2017-07-30 11:00:30 +00:00
private:
2018-12-08 05:30:43 +00:00
u32 x34_itemType;
u32 x38_itemCount;
u32 x3c_itemCapacity;
EControl x40_ctrl;
EControlCommandOption x44_ctrlCmdOpt;
2017-07-30 11:00:30 +00:00
public:
2018-12-08 05:30:43 +00:00
CScriptPlayerStateChange(TUniqueId, std::string_view, const CEntityInfo&, bool, u32, u32, u32, EControl,
EControlCommandOption);
void Accept(IVisitor& visit) override;
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
2017-07-30 11:00:30 +00:00
};
2021-04-10 08:42:06 +00:00
} // namespace metaforce