aboutsummaryrefslogtreecommitdiff
path: root/RelicManager.h
blob: 04a447d342f8e7a44c68b3e0470c7f737939727e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Feature.h"

struct Vector2;
struct Vector3;
class RelicManager : public Feature
{
	std::vector<Unit*> relics;
	int currentRelic = 0;

	//Callbacks
	void OnNeutralUnit(Unit* unit) override;
	void OnMenuMainWindow() override;
};