blob: 36b50102050c67fe620afe417a475157fdcfafc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "openvic-simulation/military/Unit.hpp"
namespace OpenVic {
struct MilitaryManager {
private:
UnitManager unit_manager;
public:
REF_GETTERS(unit_manager)
};
}
|