jl-ecs/events.go
2023-08-04 11:02:08 +08:00

12 lines
175 B
Go

package ecs
type (
EventType[T any] struct {
eventName string
componentType *ComponentType[T]
w World
}
Subscriber[T any] func(w *World, event T)
)