Advertisement
Guest User

lol

a guest
Jan 27th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. from game import Game
  2. from dino import Dino
  3.  
  4. import time
  5.  
  6. def time_ms():
  7. return time.time_ns() // 1000000
  8.  
  9. def main():
  10.  
  11. game = Game()
  12. player = Dino(50, game.win_height - 250, 64, 64)
  13. game.add_player(player)
  14.  
  15. while game.window_is_open:
  16.  
  17. game.tick(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement