phase shifts, itemize

This commit is contained in:
anton.gurov
2019-11-13 18:55:11 +03:00
parent d5a853df0e
commit 999f48afe9
14 changed files with 213 additions and 15 deletions

14
engine/items/arms.go Normal file
View File

@ -0,0 +1,14 @@
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
}