Files
alchemyst/engine/items/consumable.go
2019-11-16 03:40:26 +03:00

10 lines
166 B
Go

package items
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
type Consumable struct {
}
func (c Consumable) Type() string {
return ecs.ConsumableComponent
}