Advertisement
Guest User

Attack of the Killer Gorgs

a guest
Nov 25th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.65 KB | None | 0 0
  1. class Scene(object):
  2.     def enter(self)
  3.         pass
  4.        
  5. class Engine(object):
  6.     def __init__(self, scene_map):
  7.         pass
  8.        
  9.     def play(self):
  10.         pass
  11.        
  12. class Death(Scene):
  13.     def enter(self):
  14.         pass
  15.        
  16. class CentralCorridor(Scene):
  17.     def enter(self):
  18.         pass
  19.        
  20. class LaserWeaponArmory(Scene):
  21.     def enter(self):
  22.         pass
  23.        
  24. class TheBridge(Scene):
  25.     def enter(self):
  26.         pass
  27.        
  28. class EscapePod(Scene):
  29.     def enter(self):
  30.         pass
  31.  
  32. class Map(object):
  33.     def __init__(seld, start_scene):
  34.         pass
  35.        
  36.     def next_scene(self, scene_name):
  37.         pass
  38.        
  39.     def opening_scene(self):
  40.         pass
  41.        
  42. a_map = Map('central_corridor')
  43. a_game = Engine(a_map)
  44. a_game.play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement