Hacker theme

Mateusz Żesławski

Download as .zip Download as .tar.gz View on GitHub

Krótki opis

Obecnie jestem studentem AGH w Krakowie. Wraz z kolegami pracujemy nad projektem SPACE SHOOTER. Będzie to gra rozgrywająca się w kosmicznej przestrzni. Gracz będzie statkiem kosmicznym i będzie walczyl z przeciwnikami.

Obrazek

Statk_kosmiczny

Fragment kodu

class Projectile(pygame.sprite.Sprite):
    def __init__(self, coord):
        super().__init__()
        self.image = pygame.image.load("img/Bullet.png")
        self.rect = self.image.get_rect()
        self.rect.center = coord
        self.velocity = 8
        self.damage = 1