Removed unnecessary GameWorld

This commit is contained in:
Nicolás A. Ortega Froysa 2018-12-17 18:53:20 +01:00
parent 4b5662791f
commit adc8813e0d
3 changed files with 1 additions and 30 deletions

View File

@ -48,8 +48,7 @@ set(SRCS
"src/Main.cpp"
"src/Model.cpp"
"src/Shader.cpp"
"src/System.cpp"
"src/GameLogic.cpp")
"src/System.cpp")
# Define C++ compiler flags
set(CMAKE_CXX_FLAGS "-std=c++14 -Wall -Wextra -Wpedantic -Wfatal-errors -Werror -pedantic-errors -fno-elide-constructors")

View File

@ -1,26 +0,0 @@
/*
* Copyright (C) 2018 Ortega Froysa, Nicolás <nortega@themusicinnoise.net>
* Author: Ortega Froysa, Nicolás <nortega@themusicinnoise.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
class GameWorld {
public:
GameWorld();
private:
};

View File

@ -27,7 +27,6 @@
#include <GL/glew.h>
#include <GL/gl.h>
#include "Camera.hpp"
#include "GameLogic.hpp"
class System {
public:
System();
@ -48,7 +47,6 @@ private:
std::map<std::string, Shader> shaders;
Camera cam;
bool running;
GameLogic board_ctrl;
int CheckWin();
void handleKey(SDL_Keysym key);
};