]> git.localhorst.tv Git - blank.git/blob - src/standalone/DirectCLIFeedback.hpp
some linting
[blank.git] / src / standalone / DirectCLIFeedback.hpp
1 #ifndef BLANK_STANDALONE_DIRECTCLIFEEDBACK_HPP_
2 #define BLANK_STANDALONE_DIRECTCLIFEEDBACK_HPP_
3
4 #include "../shared/CLIContext.hpp"
5
6
7 namespace blank {
8
9 class HUD;
10
11 namespace standalone {
12
13 class DirectCLIFeedback
14 : public CLIContext {
15
16 public:
17         DirectCLIFeedback(Player &, HUD &);
18
19         void Error(const std::string &) override;
20         void Message(const std::string &) override;
21         void Broadcast(const std::string &) override;
22
23 private:
24         HUD &hud;
25
26 };
27
28 }
29 }
30
31 #endif