10 lines
166 B
Go
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
|
|
} |