mirror of
https://github.com/zeldaret/botw
synced 2026-05-24 23:21:36 -04:00
9 lines
244 B
C++
9 lines
244 B
C++
#include "KingSystem/ActorSystem/actAiClass.h"
|
|
|
|
namespace ksys::act::ai {
|
|
|
|
ActionBase::ActionBase(const ClassArg& arg)
|
|
: mActor{arg.actor}, mDefinitionIdx{u16(arg.definitionIdx)}, mRootIdx{u8(arg.rootIdx)} {}
|
|
|
|
} // namespace ksys::act::ai
|