15 lines
238 B
Go
15 lines
238 B
Go
package items
|
|
|
|
import (
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/ecs"
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/items/itemprops"
|
|
)
|
|
|
|
type Arms struct {
|
|
itemprops.DamageProfile
|
|
}
|
|
|
|
func (a Arms) Type() string {
|
|
return ecs.ArmsComponent
|
|
}
|