New Shared Library
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user