basic_tiles is now a part of the mod.
[realism.git] / game.py
blobbffad90cd351ea190ac0b3068987e96e154edf4a
1 # This file is part of Realism, which is Copyright FunnyMan3595 (Charlie Nolan)
2 # and licensed under the GNU GPL v3. For more details, see LICENSE in the main
3 # Realism directory.
5 # Game is just an empty class that holds the party, ui, and anything else we
6 # need to be able to use from anywhere.
7 class Game(object):
8 pass
10 game = Game()
11 game.maps = {}
12 game.ui = None
13 game.party = None