ABIX_Edukacja

Zaproś_mnie_gra

May 15th, 2020
798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.62 KB | None | 0 0
  1. # gra - pirat musi dostać się na statek
  2. # Licencja: GNU GPL - https://www.gnu.org/licenses/gpl-3.0.html
  3. # obrazki oryginalnie w serwisie Pixabay:
  4. # Statek: https://pixabay.com/pl/vectors/statek-%C5%82%C3%B3d%C5%BA-pirat-korsarz-146312/
  5. # Pirat: https://pixabay.com/pl/vectors/pingwin-pirat-tux-zwierz%C4%85t-chustka-161356/
  6. # Morze: https://pixabay.com/pl/photos/sun-ustawienie-niebo-zach%C3%B3d-s%C5%82o%C5%84ca-3726030/
  7.  
  8. WIDTH = 800
  9. HEIGHT = 532
  10. KROK = 3
  11. ODLEGLOSC = 40
  12.  
  13.  
  14. ship = Actor("ship.png")
  15. pirat = Actor("pingwin.png")
  16.  
  17. def draw():
  18.     screen.blit("sun_800.jpg", (0, 0))
  19.     pass
  20.  
  21. def update():
  22.     pass
Add Comment
Please, Sign In to add comment