1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-01 10:11:44 +02:00
GiantsTools/Sdk/Include/AI/Public/InputUtil.h
2021-01-23 15:40:09 -08:00

14 lines
280 B
C++

#pragma once
#include "AI/Public/Command.h"
#include "ECS/Public/Entity.h"
namespace AI
{
class InputUtil
{
public:
static void AddCommand(ECS::Entity* entity, std::unique_ptr<Command> command);
static void StopMovement(ECS::Entity* entity);
};
}