summaryrefslogtreecommitdiff
path: root/ecs/component.go
blob: f42f2e70cb44891dce713521805c4e059d6192b1 (plain)
1
2
3
4
5
6
7
package ecs

import "ponger/events"

type Component interface {
	Process(delta events.Delta, object *GameObject)
}