AI/unboxOnTheFloor.py

11 lines
213 B
Python
Raw Normal View History

2020-04-28 12:19:34 +02:00
import pygame
class UnboxOnTheFloor:
def __init__(self, screen, cell, we, ns):
self.cell = cell
self.ns = ns
self.we = we
self.screen = screen
2020-04-28 12:19:34 +02:00
def draw(self):
pass