comparison demos/rpg/scripts/gamecontroller.py @ 509:3951042a701e

Adding the RPG demo. This is basically empty at the moment. Currently it will start with a black screen.
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 20 May 2010 19:55:19 +0000
parents
children cd959b05a262
comparison
equal deleted inserted replaced
508:c8820cc201db 509:3951042a701e
1 #!/usr/bin/env python
2
3 # -*- coding: utf-8 -*-
4
5 # ####################################################################
6 # Copyright (C) 2005-2010 by the FIFE team
7 # http://www.fifengine.net
8 # This file is part of FIFE.
9 #
10 # FIFE is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public
12 # License as published by the Free Software Foundation; either
13 # version 2.1 of the License, or (at your option) any later version.
14 #
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 # Lesser General Public License for more details.
19 #
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with this library; if not, write to the
22 # Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 # ####################################################################
25 # This is the rio de hola client for FIFE.
26
27 import sys, os, re, math, random, shutil
28
29 from fife import fife
30
31 class GameController(object):
32 def __init__(self, application, engine, settings):
33 self._application = application
34 self._engine = engine
35 self._settings = settings
36
37 def pump(self):
38 pass