use gogues ecs, not working, needs rethinking

This commit is contained in:
2019-11-04 19:07:16 +03:00
parent fd27dfd636
commit f9ebcefc86
13 changed files with 490 additions and 33 deletions

9
engine/ecs/component.go Normal file
View File

@ -0,0 +1,9 @@
package ecs
// ECS system by jcerise, github.com/jcerise/gogue
import "reflect"
type Component interface {
TypeOf() reflect.Type
}