🎉 Initial Commit of Basic things like movement of player

This commit is contained in:
2024-07-18 12:23:16 +08:00
commit 4b7358a1d0
8 changed files with 152 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package common
type Vector2D struct {
X, Y float64
}