From 4b12461d868d50f241987520a0bf87bd11171154 Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Sun, 8 Jun 2008 18:20:41 +0100 Subject: [PATCH] Finally rename Lander to Game --- src/Game.cpp | 2 +- src/{Lander.hpp => Game.hpp} | 6 +++--- src/Main.cpp | 2 +- src/Menu.cpp | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename src/{Lander.hpp => Game.hpp} (97%) diff --git a/src/Game.cpp b/src/Game.cpp index 7898675..96f63b8 100644 --- a/src/Game.cpp +++ b/src/Game.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "Lander.hpp" +#include "Game.hpp" #include "LoadOnce.hpp" /* diff --git a/src/Lander.hpp b/src/Game.hpp similarity index 97% rename from src/Lander.hpp rename to src/Game.hpp index 003e88f..09f1949 100644 --- a/src/Lander.hpp +++ b/src/Game.hpp @@ -1,5 +1,5 @@ /* - * Lander.hpp -- Definition of core game classes. + * Game.hpp -- Definition of core game classes. * Copyright (C) 2006 Nick Gasson * * This program is free software; you can redistribute it and/or modify @@ -17,8 +17,8 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef INC_LANDER_HPP -#define INC_LANDER_HPP +#ifndef INC_GAME_HPP +#define INC_GAME_HPP #include "Platform.hpp" #include "OpenGL.hpp" diff --git a/src/Main.cpp b/src/Main.cpp index d4f969e..6e22859 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "Lander.hpp" +#include "Game.hpp" #define DEBUG_WINDOW #define DEBUG_WIN_X 800 diff --git a/src/Menu.cpp b/src/Menu.cpp index 97d8b7e..b8afb78 100644 --- a/src/Menu.cpp +++ b/src/Menu.cpp @@ -20,7 +20,7 @@ #include "Menu.hpp" #include "Input.hpp" #include "OpenGL.hpp" -#include "Lander.hpp" +#include "Game.hpp" #include "HighScores.hpp" const double MenuStar::ROTATE_SPEED(0.005); -- 2.39.2