Skip to content

sit_action

SitAction

Bases: IntEnum

Whether the player wants to sit or stand

Source code in src\eolib\protocol\_generated\net\client\sit_action.py
 9
10
11
12
13
14
class SitAction(IntEnum, metaclass=ProtocolEnumMeta):
    """
    Whether the player wants to sit or stand
    """
    Sit = 1
    Stand = 2

Sit = 1 class-attribute instance-attribute

Stand = 2 class-attribute instance-attribute