0.3.0 #23

Merged
altavir merged 40 commits from dev into main 2025-03-09 10:03:56 +03:00
Showing only changes of commit 29a0fb743c - Show all commits

View File

@ -35,17 +35,11 @@ public sealed interface Trajectory2D {
public sealed interface Direction : Type
public object R : Direction {
override fun toString(): String = "R"
}
public data object R : Direction
public object S : Type {
override fun toString(): String = "S"
}
public data object S : Type
public object L : Direction {
override fun toString(): String = "L"
}
public data object L : Direction
}