alchemyst/engine/items/useable.go
2019-11-13 18:55:11 +03:00

17 lines
221 B
Go

package items
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
type UsableFace interface {
Use()
}
type Usable struct {}
func (u *Usable) Type() string {
return ecs.UsableComponent
}
func (u *Usable) Use() {
}