mirror of
https://github.com/zeldaret/botw
synced 2026-08-17 05:01:25 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "KingSystem/ActorSystem/actAiAction.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
class EventMiniGameTimerWrite : public ksys::act::ai::Action {
|
||||
SEAD_RTTI_OVERRIDE(EventMiniGameTimerWrite, ksys::act::ai::Action)
|
||||
public:
|
||||
explicit EventMiniGameTimerWrite(const InitArg& arg);
|
||||
~EventMiniGameTimerWrite() override;
|
||||
|
||||
bool init_(sead::Heap* heap) override;
|
||||
void enter_(ksys::act::ai::InlineParamPack* params) override;
|
||||
void leave_() override;
|
||||
void loadParams_() override;
|
||||
|
||||
protected:
|
||||
void calc_() override;
|
||||
|
||||
// dynamic_param at offset 0x20
|
||||
sead::SafeString* mGameDataIntNameMintues_d{};
|
||||
// dynamic_param at offset 0x30
|
||||
sead::SafeString* mGameDataIntNameSeconds_d{};
|
||||
// dynamic_param at offset 0x40
|
||||
sead::SafeString* mGameDataIntNameMiliseconds_d{};
|
||||
};
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user