From c155b43e5189e838c9988a464ca930efb242ee90 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 28 Nov 2016 08:42:05 -0500 Subject: entity stop on talk --- include/window.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'include/window.hpp') diff --git a/include/window.hpp b/include/window.hpp index 55cbe1c..5cf05ea 100644 --- a/include/window.hpp +++ b/include/window.hpp @@ -1,3 +1,8 @@ +/** + * @file window.hpp + * Provides a system for handling the game's window. + */ + #ifndef WINDOW_HPP_ #define WINDOW_HPP_ @@ -7,9 +12,22 @@ #include +/** + * @class WindowSystem + * Contains everything needed to create and update a window, using SDL. + * Also handles window resizing (WIP) and screenshots (WIP). + */ class WindowSystem : public entityx::System, public entityx::Receiver { private: + + /** + * SDL's object for the window. + */ SDL_Window *window; + + /** + * An OpenGL context, created when OpenGL is set up for use. + */ SDL_GLContext glContext; public: -- cgit v1.2.3