New Shared Library

This commit is contained in:
2021-12-16 21:11:39 +00:00
parent 1a2247044a
commit 6111f86a04
24 changed files with 559 additions and 392 deletions
+16
View File
@@ -0,0 +1,16 @@
package shared
type Board struct {
Values [5][5]BoardValue
Hash map[int]Location
}
type BoardValue struct {
Value int
Visited bool
}
type Location struct {
X int
Y int
}