mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-20 22:12:03 +00:00
9 lines
318 B
Python
9 lines
318 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
|
|
|
|
__all__ = ["Box", "Discrete", "MultiDiscrete", "MultiBinary", "Tuple"]
|