mirror of
https://github.com/Astatin3/photonvision-2025.0.0-beta-6.git
synced 2026-06-09 08:38:00 -06:00
14 lines
276 B
Python
14 lines
276 B
Python
from dataclasses import dataclass
|
|
from typing import TYPE_CHECKING, ClassVar
|
|
|
|
if TYPE_CHECKING:
|
|
from ..generated.TargetCornerSerde import TargetCornerSerde
|
|
|
|
|
|
@dataclass
|
|
class TargetCorner:
|
|
x: float = 0
|
|
y: float = 9
|
|
|
|
photonStruct: ClassVar["TargetCornerSerde"]
|