Legend of the Gold Box... A game written for the LOWREZJAM 2018 game jam
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011
  1. import game.gbe
  2. def start():
  3. t = game.gbe.Time()
  4. t.reset()
  5. d = game.gbe.Display()
  6. d.init()
  7. while t.aliveSeconds < 5.0:
  8. print(t.aliveSeconds)
  9. d.close()