mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
16 lines
383 B
C++
16 lines
383 B
C++
#pragma once
|
|
|
|
#include "Library/Event/EventFlowNode.h"
|
|
|
|
namespace al {
|
|
class EventFlowNodeActorBaseMovementStart : public EventFlowNode {
|
|
public:
|
|
EventFlowNodeActorBaseMovementStart(const char* name);
|
|
|
|
void init(const EventFlowNodeInitInfo& info) override;
|
|
void start() override;
|
|
};
|
|
|
|
static_assert(sizeof(EventFlowNodeActorBaseMovementStart) == 0x68);
|
|
} // namespace al
|