Skip to content

Commit

Permalink
[enums]: added additional ObjectTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
kecks committed Apr 22, 2024
1 parent fa88edd commit 953c531
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 953c531

Please sign in to comment.