17 lines
221 B
Go
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() {
|
|
} |