mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
17 lines
356 B
C++
17 lines
356 B
C++
#pragma once
|
|
|
|
#include "Game/AI/Action/actionNavMeshAction.h"
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class NavMeshGrabLeftWalk : public NavMeshAction {
|
|
SEAD_RTTI_OVERRIDE(NavMeshGrabLeftWalk, NavMeshAction)
|
|
public:
|
|
explicit NavMeshGrabLeftWalk(const InitArg& arg);
|
|
|
|
protected:
|
|
};
|
|
|
|
} // namespace uking::action
|