mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
18 lines
379 B
C++
18 lines
379 B
C++
#include "Game/AI/Action/actionDemoGetWeapon.h"
|
|
|
|
namespace uking::action {
|
|
|
|
DemoGetWeapon::DemoGetWeapon(const InitArg& arg) : DemoGetItem(arg) {}
|
|
|
|
DemoGetWeapon::~DemoGetWeapon() = default;
|
|
|
|
bool DemoGetWeapon::init_(sead::Heap* heap) {
|
|
return DemoGetItem::init_(heap);
|
|
}
|
|
|
|
void DemoGetWeapon::loadParams_() {
|
|
DemoGetItem::loadParams_();
|
|
}
|
|
|
|
} // namespace uking::action
|