mirror of
https://github.com/zeldaret/botw
synced 2026-06-05 03:07:42 -04:00
12 lines
257 B
C++
12 lines
257 B
C++
#include "Game/AI/Action/actionAirWallAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
AirWallAction::AirWallAction(const InitArg& arg) : ksys::act::ai::Action(arg) {}
|
|
|
|
void AirWallAction::calc_() {
|
|
ksys::act::ai::Action::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|