1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-07-03 03:51:45 +02:00
GiantsTools/Sdk/Include/AI/Public/InputUtil.h

14 lines
280 B
C
Raw Normal View History

2021-01-24 00:40:09 +01:00
#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);
};
}