alchemyst/engine/items/useable.go
2019-11-15 21:24:42 +03:00

17 lines
220 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() {
}