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.
27 lines
377 B
27 lines
377 B
//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.NextComponentID() |
|
|
|
func (p *WeaponComponent) ComponentID() gohan.ComponentID { |
|
return WeaponComponentID |
|
}
|
|
|