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.
32 lines
535 B
32 lines
535 B
package component |
|
|
|
import ( |
|
. "code.rocketnine.space/tslocum/brownboxbatman/ecs" |
|
"code.rocketnine.space/tslocum/gohan" |
|
) |
|
|
|
type WeaponComponent struct { |
|
Equipped bool |
|
|
|
Damage int |
|
|
|
// In ticks |
|
FireRate int |
|
NextFire int |
|
|
|
BulletSpeed float64 |
|
} |
|
|
|
var WeaponComponentID = ECS.NewComponentID() |
|
|
|
func (p *WeaponComponent) ComponentID() gohan.ComponentID { |
|
return WeaponComponentID |
|
} |
|
|
|
func Weapon(ctx *gohan.Context) *WeaponComponent { |
|
c, ok := ctx.Component(WeaponComponentID).(*WeaponComponent) |
|
if !ok { |
|
return nil |
|
} |
|
return c |
|
}
|
|
|