| @@ -26,6 +26,9 @@ class Audio | |||||
| { | { | ||||
| public: | public: | ||||
| static void Setup(int channels); | static void Setup(int channels); | ||||
| private: | |||||
| Audio() {} | |||||
| }; | }; | ||||
| } /* namespace lol */ | } /* namespace lol */ | ||||
| @@ -28,6 +28,9 @@ public: | |||||
| static int Register(char const *path); | static int Register(char const *path); | ||||
| static void Deregister(int id); | static void Deregister(int id); | ||||
| static Font *GetFont(int id); | static Font *GetFont(int id); | ||||
| private: | |||||
| Forge() {} | |||||
| }; | }; | ||||
| } /* namespace lol */ | } /* namespace lol */ | ||||
| @@ -26,6 +26,9 @@ class Platform | |||||
| { | { | ||||
| public: | public: | ||||
| static int GetMouseCount(); | static int GetMouseCount(); | ||||
| private: | |||||
| Platform() {} | |||||
| }; | }; | ||||
| } /* namespace lol */ | } /* namespace lol */ | ||||
| @@ -48,6 +48,9 @@ public: | |||||
| static void Stop(int id); | static void Stop(int id); | ||||
| static float GetAvg(int id); | static float GetAvg(int id); | ||||
| static float GetMax(int id); | static float GetMax(int id); | ||||
| private: | |||||
| Profiler() {} | |||||
| }; | }; | ||||
| } /* namespace lol */ | } /* namespace lol */ | ||||
| @@ -45,6 +45,9 @@ public: | |||||
| static void Shutdown(); | static void Shutdown(); | ||||
| static int Finished(); | static int Finished(); | ||||
| private: | |||||
| Ticker() {} | |||||
| }; | }; | ||||
| } /* namespace lol */ | } /* namespace lol */ | ||||
| @@ -29,6 +29,9 @@ class Tiler | |||||
| public: | public: | ||||
| static TileSet *Register(char const *path, ivec2 size, ivec2 count); | static TileSet *Register(char const *path, ivec2 size, ivec2 count); | ||||
| static void Deregister(TileSet *); | static void Deregister(TileSet *); | ||||
| private: | |||||
| Tiler() {} | |||||
| }; | }; | ||||
| } /* namespace lol */ | } /* namespace lol */ | ||||