mirror of
https://github.com/zeldaret/botw
synced 2026-05-31 09:21:36 -04:00
12 lines
243 B
C++
12 lines
243 B
C++
#include "KingSystem/ActorSystem/aiDummyAi.h"
|
|
|
|
namespace ksys::act::ai {
|
|
|
|
DummyAi::DummyAi(const ActionBase::InitArg& arg) : Ai(arg) {}
|
|
|
|
void DummyAi::enter_(InlineParamPack* params) {}
|
|
|
|
void DummyAi::calc_() {}
|
|
|
|
} // namespace ksys::act::ai
|