mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
14 lines
280 B
C++
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);
|
|
};
|
|
} |