1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-09 20:32:43 +01:00
openrw/rwgame/GameWindow.hpp

39 lines
511 B
C++
Raw Normal View History

#ifndef GAMEWINDOW_HPP
#define GAMEWINDOW_HPP
#include <string>
2016-08-08 17:27:17 +02:00
#include "SDL.h"
#include <glm/vec2.hpp>
#include <render/GameRenderer.hpp>
class GameWindow
{
SDL_Window* window;
SDL_GLContext glcontext;
public:
GameWindow();
void create(const std::string& title, size_t w, size_t h, bool fullscreen);
void close();
void showCursor();
void hideCursor();
glm::ivec2 getSize() const;
void swap() const
{
SDL_GL_SwapWindow(window);
}
bool isOpen() const
{
return !!window;
}
};
#endif