12 lines
178 B
Go
12 lines
178 B
Go
package items
|
|
|
|
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
|
|
|
|
type Armor struct {
|
|
DefenceProfile struct{}
|
|
}
|
|
|
|
func (a *Armor) Type() string {
|
|
return ecs.ArmorComponent
|
|
}
|