source: opengl-game/opengl-game.cpp@ d02c25f

feature/imgui-sdl points-test
Last change on this file since d02c25f was d02c25f, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Create openglgame, which will be the original opengl+glfw game, but refactored to make simplify its conversion to vulkan

  • Property mode set to 100644
File size: 201 bytes
Line 
1#include "opengl-game.hpp"
2
3#include <iostream>
4
5using namespace std;
6
7OpenGLGame::OpenGLGame() {
8}
9
10OpenGLGame::~OpenGLGame() {
11}
12
13void OpenGLGame::run() {
14 cout << "Running like a boss!" << endl;
15}
Note: See TracBrowser for help on using the repository browser.