Source code for utils.Sounds
from enum import Enum
[docs]
class Sounds(Enum):
    """
    This enumeration lists the emotion sound Robobo can play.
    """
    PURR = "purr"
    MOAN = "moan"
    ANGRY = "angry"
    APPROVE = "approve"
    DISAPPROVE = "disapprove"
    DISCOMFORT = "discomfort"
    DOUBTFUL = "doubtful"
    LAUGH = "laugh"
    LIKES = "likes"
    MUMBLE = "mumble"
    OUCH = "ouch"
    THINKING = "thinking"
    VARIOUS = "various"