8 lines
129 B
Go
8 lines
129 B
Go
package entities
|
|
|
|
// PlayerEntity is the go struct representing the player's location
|
|
type PlayerEntity struct {
|
|
X int
|
|
Y int
|
|
}
|