File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Common/src/main/java/at/petrak/hexcasting/client/gui Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -508,15 +508,15 @@ class GuiSpellcasting constructor(
508508 fun pxToCoord (px : Vec2 ) = at.petrak.hexcasting.api.utils.pxToCoord(px, this .hexSize(), this .coordsOffset())
509509
510510
511- private sealed class PatternDrawState {
511+ public sealed class PatternDrawState {
512512 /* * We're waiting on the player to right-click again */
513- object BetweenPatterns : PatternDrawState()
513+ public object BetweenPatterns : PatternDrawState()
514514
515515 /* * We just started drawing and haven't drawn the first line yet. */
516- data class JustStarted (val start : HexCoord ) : PatternDrawState()
516+ public data class JustStarted (val start : HexCoord ) : PatternDrawState()
517517
518518 /* * We've started drawing a pattern for real. */
519- data class Drawing (val start : HexCoord , var current : HexCoord , val wipPattern : HexPattern ) : PatternDrawState()
519+ public data class Drawing (val start : HexCoord , var current : HexCoord , val wipPattern : HexPattern ) : PatternDrawState()
520520 }
521521
522522 companion object {
You can’t perform that action at this time.
0 commit comments