mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 14:38:41 -04:00
16 lines
353 B
C++
16 lines
353 B
C++
#include "Game/AI/Action/actionGuardWithAS.h"
|
|
|
|
namespace uking::action {
|
|
|
|
GuardWithAS::GuardWithAS(const InitArg& arg) : Guard(arg) {}
|
|
|
|
GuardWithAS::~GuardWithAS() = default;
|
|
|
|
void GuardWithAS::loadParams_() {
|
|
Guard::loadParams_();
|
|
getStaticParam(&mASSlot_s, "ASSlot");
|
|
getStaticParam(&mASName_s, "ASName");
|
|
}
|
|
|
|
} // namespace uking::action
|