KEYS updated, signed copy.
[realism.git] / game.py
blob67b7e2a94b4d8cedcd2d571e1fa864c8126291a3
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 '''Simple module for holding the game object. Check its documentation for more information.'''
7 # Game is just a simple class that holds the party, ui, and anything else we
8 # need to be able to use from anywhere.
9 class Game(object):
10 '''Holds the objects that need to be accessible from anywhere in the game. Contents:
11 maps: A dictionary map_name -> map
12 ui: The current user interface.
13 party: The hero's party.'''
14 maps = {}
15 ui = None
16 party = None
18 game = Game()