From 2110f2217ff660127ad60dafb1d2cd430e5bc1b2 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 18 Apr 2015 16:32:51 +0100 Subject: [PATCH] Removed image location variables, stored in textures now --- bullet.py | 2 -- player.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/bullet.py b/bullet.py index 574ebe4..a1f27dc 100644 --- a/bullet.py +++ b/bullet.py @@ -1,7 +1,5 @@ import pygame -IMAGE_LOCATION = "bullet.png" - class Bullet(pygame.sprite.Sprite): def __init__(self, parent): diff --git a/player.py b/player.py index b66ec9c..e144c69 100644 --- a/player.py +++ b/player.py @@ -1,7 +1,5 @@ import pygame -IMAGE_LOCATION = "player.png" - class Shooter(pygame.sprite.Sprite): def __init__(self, color=(30,0,150), width=64, height=64):