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