导表工具重构

This commit is contained in:
kercylan98
2023-05-18 18:04:46 +08:00
parent 54a000c7d3
commit 335c93f92b
14 changed files with 740 additions and 456 deletions
+13
View File
@@ -0,0 +1,13 @@
package internal
func NewPosition(x, y int) *Position {
return &Position{
X: x,
Y: y,
}
}
type Position struct {
X int
Y int
}