10 lines
158 B
Go
10 lines
158 B
Go
package items
|
|
|
|
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
|
|
|
|
type Carried struct {}
|
|
|
|
func (c *Carried) Type() string {
|
|
return ecs.CarriedComponent
|
|
}
|