alchemyst/engine/ecs/component.go
2019-11-15 21:24:42 +03:00

20 lines
508 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"
const BackpackComponent = "backpack"
type Component interface {
Type() string
}