Remove empty unused game_instance class and its source files
This commit is contained in:
parent
ca0cdf376d
commit
73583d3e95
5 changed files with 0 additions and 52 deletions
|
@ -337,8 +337,6 @@
|
|||
<Unit filename="..\..\src\game_events\pump.hpp" />
|
||||
<Unit filename="..\..\src\game_events\wmi_container.cpp" />
|
||||
<Unit filename="..\..\src\game_events\wmi_container.hpp" />
|
||||
<Unit filename="..\..\src\game_instance.cpp" />
|
||||
<Unit filename="..\..\src\game_instance.hpp" />
|
||||
<Unit filename="..\..\src\game_preferences.cpp" />
|
||||
<Unit filename="..\..\src\game_preferences.hpp" />
|
||||
<Unit filename="..\..\src\game_preferences_display.cpp" />
|
||||
|
|
|
@ -709,7 +709,6 @@ set(wesnoth-main_SRC
|
|||
game_events/menu_item.cpp
|
||||
game_events/pump.cpp
|
||||
game_events/wmi_container.cpp
|
||||
game_instance.cpp
|
||||
game_preferences.cpp
|
||||
game_preferences_display.cpp
|
||||
gamestatus.cpp
|
||||
|
|
|
@ -272,7 +272,6 @@ wesnoth_sources = Split("""
|
|||
game_events/menu_item.cpp
|
||||
game_events/pump.cpp
|
||||
game_events/wmi_container.cpp
|
||||
game_instance.cpp
|
||||
game_preferences.cpp
|
||||
gamestatus.cpp
|
||||
gui/auxiliary/canvas.cpp
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
/*
|
||||
Copyright (C) 2011 - 2014 by Lukasz Dobrogowski <lukasz.dobrogowski@gmail.com>
|
||||
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 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.
|
||||
|
||||
See the COPYING file for more details.
|
||||
*/
|
||||
|
||||
#include "game_instance.hpp"
|
||||
|
||||
#include "log.hpp"
|
||||
|
||||
#define LOG_GENERAL LOG_STREAM(info, lg::general)
|
||||
#define WRN_GENERAL LOG_STREAM(warn, lg::general)
|
||||
#define DBG_GENERAL LOG_STREAM(debug, lg::general)
|
||||
|
||||
game_instance::game_instance()
|
||||
{
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
/*
|
||||
Copyright (C) 2011 - 2014 by Lukasz Dobrogowski <lukasz.dobrogowski@gmail.com>
|
||||
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 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.
|
||||
|
||||
See the COPYING file for more details.
|
||||
*/
|
||||
#ifndef GAME_INSTANCE_H_INCLUDED
|
||||
#define GAME_INSTANCE_H_INCLUDED
|
||||
|
||||
class game_instance
|
||||
{
|
||||
public:
|
||||
game_instance();
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Reference in a new issue