mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-20 22:12:03 +00:00
10 lines
365 B
Python
10 lines
365 B
Python
from gym.spaces.box import Box
|
|
from gym.spaces.discrete import Discrete
|
|
from gym.spaces.multi_discrete import MultiDiscrete
|
|
from gym.spaces.multi_binary import MultiBinary
|
|
from gym.spaces.prng import seed
|
|
from gym.spaces.tuple_space import Tuple
|
|
from gym.spaces.dict_space import Dict
|
|
|
|
__all__ = ["Box", "Discrete", "MultiDiscrete", "MultiBinary", "Tuple", "Dict"]
|