1
0
forked from s444399/AI
AI/floor.py

10 lines
202 B
Python
Raw Normal View History

2020-04-05 17:43:41 +02:00
import pygame
class Floor:
def __init__(self, screen, cell, we, ns):
self.cell = cell
self.ns = ns
self.we = we
self.screen = screen
def draw(self):
pass