# ButtonState class in mod.common.minecraftEnum - 描述 按钮状态枚举值 ```python class ButtonState(object): Up = 0 # 按钮抬起 Down = 1 # 按钮按下 ```