gohan/examples/twinstick/component/weapon.go

36 lines
522 B
Go
Raw Normal View History

2021-11-19 04:13:28 +00:00
//go:build example
// +build example
package component
import (
"time"
"code.rocketnine.space/tslocum/gohan"
)
type WeaponComponent struct {
Ammo int
Damage int
FireRate time.Duration
LastFire time.Time
BulletSpeed float64
}
var WeaponComponentID = gohan.NewComponentID()
2021-11-19 04:13:28 +00:00
func (p *WeaponComponent) ComponentID() gohan.ComponentID {
return WeaponComponentID
}
func Weapon(e gohan.Entity) *WeaponComponent {
c, ok := e.Component(WeaponComponentID).(*WeaponComponent)
if !ok {
return nil
}
return c
}