Start of some code.

This commit is contained in:
2023-12-01 18:38:58 +01:00
parent 62f10f66d6
commit 8b8e396710
6 changed files with 29 additions and 0 deletions

6
types/position.go Normal file
View File

@ -0,0 +1,6 @@
package types
type Position struct {
x int
y int
}

5
types/robots.go Normal file
View File

@ -0,0 +1,5 @@
package types
type Robot struct {
position Position
}