added file to track level setup
This commit is contained in:
parent
69582a5eaa
commit
2e700da34a
1 changed files with 7 additions and 0 deletions
7
levels.py
Normal file
7
levels.py
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import logging
|
||||||
|
|
||||||
|
class LEVEL:
|
||||||
|
def __init__(self, rows, columns):
|
||||||
|
self.rows = rows
|
||||||
|
self.columns = columns
|
||||||
|
|
Reference in a new issue