mirror of
https://github.com/illiumst/marl-factory-grid.git
synced 2025-05-22 23:06:43 +02:00
11 lines
227 B
Python
11 lines
227 B
Python
from typing import NamedTuple, Union
|
|
|
|
# Battery Env
|
|
CHARGE_PODS = 'ChargePods'
|
|
BATTERIES = 'Batteries'
|
|
BATTERY_DISCHARGED = 'DISCHARGED'
|
|
CHARGE_POD_SYMBOL = 1
|
|
|
|
|
|
CHARGE = 'do_charge_action'
|