11 lines
213 B
Python
11 lines
213 B
Python
import pygame
|
|
|
|
class UnboxOnTheFloor:
|
|
def __init__(self, screen, cell, we, ns):
|
|
self.cell = cell
|
|
self.ns = ns
|
|
self.we = we
|
|
self.screen = screen
|
|
|
|
def draw(self):
|
|
pass |