12 lines
177 B
Go
12 lines
177 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
|
|
}
|