Skip to content

Commit

Permalink
Merge pull request #149 from K3cks/enums
Browse files Browse the repository at this point in the history
[enums]: added additional ObjectTypes
  • Loading branch information
sunava authored Apr 22, 2024
2 parents fa88edd + 953c531 commit 5b88866
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/pycram/datastructures/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ class ObjectType(Enum):
"""
Enum for Object types to easier identify different objects
"""
METALMUG = auto()
PRINGLES = auto()
MILK = auto()
SPOON = auto()
BOWL = auto()
Expand All @@ -56,6 +58,7 @@ class ObjectType(Enum):
ROBOT = auto()
ENVIRONMENT = auto()
GENERIC_OBJECT = auto()
HUMAN = auto()


class State(Enum):
Expand Down

0 comments on commit 5b88866

Please sign in to comment.