mirror of
https://github.com/illiumst/marl-factory-grid.git
synced 2025-05-23 15:26:43 +02:00
13 lines
314 B
Python
13 lines
314 B
Python
from marl_factory_grid.environment.groups.objects import Objects
|
|
from marl_factory_grid.modules.zones import Zone
|
|
|
|
|
|
class Zones(Objects):
|
|
|
|
symbol = None
|
|
_entity = Zone
|
|
var_can_move = False
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(Zones, self).__init__(*args, can_collide=True, **kwargs)
|