mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
19 lines
417 B
Python
19 lines
417 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class TheoryCase:
|
|
case_id: str
|
|
family: str
|
|
subfamily: str
|
|
movement_mode: str
|
|
momentum_ticks: int
|
|
gap_blocks: int | None
|
|
delta_y: float | None
|
|
ceiling_height: float | None
|
|
wall_width: int | None
|
|
expected_reachable: bool
|
|
landing_x: float | None
|
|
apex_y: float | None
|
|
margin: float | None
|
|
notes: str = ""
|