Create player object

This commit is contained in:
2020-08-20 22:21:29 -04:00
parent 9ac00442fe
commit 6e95246b83
2 changed files with 16 additions and 8 deletions

View File

@ -0,0 +1,7 @@
package entities
// PlayerEntity is the go struct representing the player's location
type PlayerEntity struct {
X int
Y int
}