2019-11-15 21:24:42 +03:00

14 lines
237 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
}