You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
465 B
38 lines
465 B
package main |
|
|
|
import ( |
|
"time" |
|
) |
|
|
|
var weaponUzi = &playerWeapon{ |
|
sprite: imageAtlas[ImageUzi], |
|
cooldown: 100 * time.Millisecond, |
|
} |
|
|
|
type gamePlayer struct { |
|
x, y float64 |
|
|
|
angle float64 |
|
|
|
weapon *playerWeapon |
|
|
|
hasTorch bool |
|
|
|
score int |
|
|
|
soulsRescued int |
|
|
|
health int |
|
|
|
garlicUntil time.Time |
|
holyWaterUntil time.Time |
|
} |
|
|
|
func NewPlayer() (*gamePlayer, error) { |
|
p := &gamePlayer{ |
|
weapon: weaponUzi, |
|
hasTorch: true, |
|
health: 3, |
|
} |
|
return p, nil |
|
}
|
|
|