Kaynağa Gözat

Added Coordinate struct

Ronald Peterson 10 yıl önce
ebeveyn
işleme
e70974031f
1 değiştirilmiş dosya ile 6 ekleme ve 0 silme
  1. 6 0
      board/coordinate.go

+ 6 - 0
board/coordinate.go

@@ -0,0 +1,6 @@
+package board
+
+type Coordinate struct {
+	X int64
+	Y int64
+}