2019-11-13 18:55:11 +03:00

14 lines
238 B
Go

package items
import (
"lab.zaar.be/thefish/alchemyst-go/engine/ecs"
"lab.zaar.be/thefish/alchemyst-go/engine/items/itemprops"
)
type Ammo struct {
itemprops.DamageProfile
}
func (a *Ammo) Type() string {
return ecs.AmmoComponent
}