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

View File

@ -1,3 +1,9 @@
package ecs
// ECS system by jcerise, github.com/jcerise/gogue
type Entity int
func (e *Entity) HasComponent(c Component) bool {
return true
}