mirror of
https://github.com/illiumst/marl-factory-grid.git
synced 2025-05-22 14:56:43 +02:00
12 lines
234 B
Python
12 lines
234 B
Python
from typing import NamedTuple
|
|
|
|
|
|
SYMBOL_NO_ITEM = 0
|
|
SYMBOL_DROP_OFF = 1
|
|
# Item Env
|
|
ITEM = 'Items'
|
|
INVENTORY = 'Inventories'
|
|
DROP_OFF = 'DropOffLocations'
|
|
|
|
ITEM_ACTION = 'ITEMACTION'
|