rename gamelogic into renderlogic

This commit is contained in:
Peder Bergebakken Sundt 2019-03-21 08:41:24 +01:00
parent e0253940bd
commit 8801414e34
4 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// Local headers
#include "program.hpp"
#include "utilities/window.hpp"
#include "gamelogic.hpp"
#include "renderlogic.hpp"
#include <glm/glm.hpp>
// glm::translate, glm::rotate, glm::scale, glm::perspective
#include <glm/gtc/matrix_transform.hpp>

View File

@ -1,4 +1,4 @@
#include "gamelogic.hpp"
#include "renderlogic.hpp"
#include "sceneGraph.hpp"
#include <GLFW/glfw3.h>
#include <SFML/Audio/Sound.hpp>

View File

@ -1,5 +1,5 @@
#include "scene.hpp"
#include "gamelogic.hpp"
#include "renderlogic.hpp"
#include "sceneGraph.hpp"
#include <GLFW/glfw3.h>
#include <chrono>