Guest User

Untitled

a guest
May 29th, 2015
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. class Game:
  2.     def __init__(self):
  3.         self.start()
  4.  
  5.     def start(self):
  6.         while True:
  7.  
  8.             self.a()
  9.             self.b()
  10.             self.c()
  11.  
  12.     def a(self):
  13.         pass
  14.  
  15.     def b(self):
  16.         pass
  17.  
  18.     def c(self):
  19.         pass
Advertisement
Add Comment
Please, Sign In to add comment