summaryrefslogtreecommitdiff
path: root/kurator/src/ForceBalance.h
blob: 317a4e86bc2b4ec4f8167a6ca50b25ab166d317f (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 <vector>

#include <entt/entity/registry.hpp>


namespace kurator
{


class ForceBalance
{
public:
	void update(const entt::registry& registry);
	void draw() const;
private:
	double total;
	std::vector<double> teams;
};


}  // namespace kurator