mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-10 06:02:50 +00:00
25 lines
683 B
C++
25 lines
683 B
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2011 - 2013 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
|