alchemyst/engine/ecs/component.go
2019-11-13 18:55:11 +03:00

19 lines
471 B
Go

package ecs
// ECS system by jcerise, github.com/jcerise/gogue
const AppearanceComponent = "appearance"
const CoordsComponent = "coords"
const MobComponent = "mob"
const MoveableComponent = "movable"
const CarriedComponent = "carried"
const UsableComponent = "usable"
const WearableComponent = "usable"
const ArmsComponent = "arms"
const RangedComponent = "ranged"
const AmmoComponent = "ammo"
const ArmorComponent = "armor"
type Component interface {
Type() string
}