mirror of
https://github.com/zeldaret/botw
synced 2026-05-24 15:20:54 -04:00
12 lines
210 B
C++
12 lines
210 B
C++
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace ksys::act::ai {
|
|
|
|
Action::Action(const ClassArg& arg) : ActionBase(arg) {}
|
|
|
|
bool Action::isAction() {
|
|
return true;
|
|
}
|
|
|
|
} // namespace ksys::act::ai
|