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