mirror of
https://github.com/zeldaret/botw
synced 2026-07-10 06:16:55 -04:00
17 lines
361 B
C++
17 lines
361 B
C++
#pragma once
|
|
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class NPCPurchaseMaterial : public ksys::act::ai::Action {
|
|
SEAD_RTTI_OVERRIDE(NPCPurchaseMaterial, ksys::act::ai::Action)
|
|
public:
|
|
explicit NPCPurchaseMaterial(const InitArg& arg);
|
|
~NPCPurchaseMaterial() override;
|
|
|
|
protected:
|
|
};
|
|
|
|
} // namespace uking::action
|