18 lines
186 B
Markdown
18 lines
186 B
Markdown
# BlockBreathability
|
|
|
|
class in mod.common.minecraftEnum
|
|
|
|
- 描述
|
|
|
|
方块的可呼吸性
|
|
|
|
|
|
|
|
```python
|
|
class BlockBreathability(object):
|
|
Solid = 0 # 固体
|
|
Air = 1 # 空气
|
|
|
|
```
|
|
|