mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 06:48:15 -04:00
12 lines
257 B
C++
12 lines
257 B
C++
#include "Game/AI/Action/actionNotice.h"
|
|
|
|
namespace uking::action {
|
|
|
|
Notice::Notice(const InitArg& arg) : ActionWithAS(arg) {}
|
|
|
|
void Notice::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
ActionWithAS::enter_(params);
|
|
}
|
|
|
|
} // namespace uking::action
|