blob: 77e1d101dfd52795e962650af4dbc5c29294cd4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#pragma once
#include <entt/entity/registry.hpp>
#include <entt/signal/dispatcher.hpp>
#include <kurator/engine/Context.h>
#include <kurator/campaign/Scenario.h>
#include <kurator/sim/Battle.h>
#include "TeamManager.h"
namespace kurator
{
namespace sim
{
class BaseBattle : public Battle
{
public:
BaseBattle(const campaign::Scenario& scenario);
entt::registry& registry() override;
entt::dispatcher& dispatcher() override;
void update(engine::Context& ctx) override;
private:
entt::registry _registry;
entt::dispatcher _dispatcher;
TeamManager manager;
void pick_random_targets();
};
} // namespace sim
} // namespace kurator
|