8 lines
317 B
Python
8 lines
317 B
Python
|
import pygame
|
||
|
from config import CELL_SIZE
|
||
|
|
||
|
class Road( pygame.sprite.Sprite ):
|
||
|
def __init__( self, x, y ):
|
||
|
pygame.sprite.Sprite.__init__( self )
|
||
|
self.rect = pygame.Rect( x * CELL_SIZE, y * CELL_SIZE, CELL_SIZE, CELL_SIZE )
|
||
|
self.image = pygame.image.load("Resources/Images/Image_Road.png")
|