aboutsummaryrefslogtreecommitdiff
path: root/Engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'Engine.h')
-rw-r--r--Engine.h28
1 files changed, 16 insertions, 12 deletions
diff --git a/Engine.h b/Engine.h
index 24d5e81..07ac98b 100644
--- a/Engine.h
+++ b/Engine.h
@@ -24,16 +24,20 @@ class Engine
public:
static Engine* Get();
- World* GetWorld();
- MainScreen* GetMainScreen();
- int GetTotalPlayers();
- PlayerArray* GetPlayerArray();
-
- Vector2 worldToScreen(Vector3 position);
- Vector2 worldToScreen(Unit* unit);
-
- uint32_t GetPlayerColor(int colorIndex);
- ImVec4 GetPlayerColorImGUI(int colorIndex);
- Player* GetPlayerByName(char* playername);
- Player* GetLocalPlayer();
+ World* GetWorld() const;
+ MainScreen* GetMainScreen() const;
+ int GetTotalPlayers() const;
+ PlayerArray* GetPlayerArray() const;
+
+ Vector2 worldToScreen(Vector3 position) const;
+ Vector2 worldToScreen(Unit* unit) const;
+
+ uint32_t GetPlayerColor(int colorIndex) const;
+ ImVec4 GetPlayerColorImGUI(int colorIndex) const;
+ Player* GetPlayerByName(char* playername) const;
+ Player* GetLocalPlayer() const;
+
+ void SendChat(const char* message, bool teamchat = false) const;
+ void PrintNotification(const char* message) const;
+ void PrintBottomNotification(const char* message, unsigned int hexcolor) const;
}; \ No newline at end of file