Skip to content

Commit

Permalink
?
Browse files Browse the repository at this point in the history
  • Loading branch information
KirbyZX committed Apr 13, 2017
1 parent 31de954 commit 993c8a9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Level/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ def __init__(self):
super().__init__()

self.image = pygame.Surface([50, 10])
self.image.fill(PURPLE)
self.image.fill(MAGENTA)

self.rect = self.image.get_rect()
2 changes: 1 addition & 1 deletion constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
BLUE = (0, 0, 255)
CYAN = (0, 255, 255)
YELLOW = (255, 255, 0)
PURPLE = (255, 0, 255)
MAGENTA = (255, 0, 255)

# Screen dimensions
SCREEN_WIDTH = 1000
Expand Down
4 changes: 0 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import time

import pygame

from Animate.player import Player
Expand Down Expand Up @@ -29,9 +28,6 @@ def main():
player = Player()
enemy = Rifleman(player)

# Lives Calculation
# lives = Player().lives()

# Set caption and icon
pygame.display.set_caption("Level Zero")
pygame.display.set_icon(pygame.transform.scale(player.running_frames_r[0], [32, 32]))
Expand Down

0 comments on commit 993c8a9

Please sign in to comment.