SHOW:
|
|
- or go back to the newest paste.
1 | #pragma once | |
2 | #include <iostream> | |
3 | #include <string> | |
4 | #include <vector> | |
5 | #include <queue> | |
6 | #include "LevelGUI.h" | |
7 | ||
8 | ||
9 | class Mediator | |
10 | { | |
11 | public: | |
12 | Mediator(); | |
13 | void queueMessage(std::string& mes); | |
14 | void AddColeague(LevelGUI* lGUI); | |
15 | ~Mediator(); | |
16 | private: | |
17 | LevelGUI* lev; | |
18 | ||
19 | //std::vector<LevelGUI*> lguiVec; | |
20 | }; | |
21 | ||
22 | ||
23 |