Browse Source

Added Coordinate struct

Ronald Peterson 10 years ago
parent
commit
e70974031f
1 changed files with 6 additions and 0 deletions
  1. 6 0
      board/coordinate.go

+ 6 - 0
board/coordinate.go

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