SZI2019SmieciarzWmi/sprites/cell.py

17 lines
338 B
Python
Raw Normal View History

2019-03-19 11:47:23 +01:00
# -*- coding: utf-8 -*-
import pygame
2019-03-19 10:08:38 +01:00
import sys
from pygame.locals import *
CELL_SIZE = 64
2019-03-19 11:47:23 +01:00
class Cell(pygame.sprite.Sprite):
def __init__(self,x,y):
pygame.sprite.Sprite.__init__(self)
self.x = x
self.y = y
self.update()
def update(self):
self.rect = pygame.Rect(self.x*CELL_SIZE,self.y*CELL_SIZE, CELL_SIZE, CELL_SIZE)