7 lines
111 B
Python
7 lines
111 B
Python
|
import logging
|
||
|
|
||
|
class LEVEL:
|
||
|
def __init__(self, rows, columns):
|
||
|
self.rows = rows
|
||
|
self.columns = columns
|
||
|
|