mirror of
https://github.com/zeldaret/botw
synced 2026-08-02 08:22:28 -04:00
actionSetInstEventFlag ctor dtor
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#include "Game/Action/actionSetInstEventFlag.h"
|
||||
#include "KingSystem/ActorSystem/actActor.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
SetInstEventFlagAction::SetInstEventFlagAction(const ksys::act::ai::ClassArg& arg)
|
||||
: ksys::act::ai::Action(arg) {}
|
||||
|
||||
SetInstEventFlagAction::~SetInstEventFlagAction() = default;
|
||||
|
||||
} // namespace uking::action
|
||||
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include "KingSystem/ActorSystem/actAiAction.h"
|
||||
#include "KingSystem/ActorSystem/actAiParam.h"
|
||||
#include "KingSystem/Utils/Types.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
class SetInstEventFlagAction : public ksys::act::ai::Action {
|
||||
public:
|
||||
SetInstEventFlagAction(const ksys::act::ai::ClassArg& arg);
|
||||
~SetInstEventFlagAction() override;
|
||||
|
||||
void oneShot() override;
|
||||
|
||||
};
|
||||
KSYS_CHECK_SIZE_NX150(SetInstEventFlagAction, 0x20);
|
||||
|
||||
} // namespace uking::action
|
||||
@@ -11,6 +11,8 @@ public:
|
||||
|
||||
virtual void enter() {}
|
||||
virtual void loadParams() {}
|
||||
|
||||
virtual void oneShot() {}
|
||||
};
|
||||
KSYS_CHECK_SIZE_NX150(Action, 0x20);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user