mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
20 lines
404 B
C++
20 lines
404 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionGrab.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class SimpleGrabWithASBase : public Grab {
|
|
SEAD_RTTI_OVERRIDE(SimpleGrabWithASBase, Grab)
|
|
public:
|
|
explicit SimpleGrabWithASBase(const InitArg& arg);
|
|
~SimpleGrabWithASBase() override;
|
|
|
|
void loadParams_() override;
|
|
|
|
protected:
|
|
};
|
|
|
|
} // namespace uking::action
|