21 lines
509 B
Python
21 lines
509 B
Python
from typing import Dict
|
|
|
|
from data.Item import Item
|
|
from data.Order import Order
|
|
from data.enum.ItemType import ItemType
|
|
from util.PathDefinitions import GridLocation
|
|
|
|
|
|
class GameConstants:
|
|
def __init__(
|
|
self,
|
|
grid_width: int,
|
|
grid_height: int,
|
|
walls: [GridLocation],
|
|
diffTerrain: [GridLocation]
|
|
):
|
|
self.grid_width = grid_width
|
|
self.grid_height = grid_height
|
|
self.walls = walls
|
|
self.diffTerrain = diffTerrain
|