summaryrefslogtreecommitdiff
path: root/sim/include/kurator/sim/ai.h
blob: f9899d67346d3d2e8658040105214355f635341c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <entt/entt.hpp>

#include <kurator/engine/Point.h>


namespace kurator
{
namespace sim
{


struct AIShip
{
	double keep_at_range;
	engine::Point destination;
	entt::entity target = entt::null;
};


}  // namespace sim
}  // namespace kurator