jl-ecs/events.go

12 lines
175 B
Go
Raw Normal View History

2023-08-04 11:02:08 +08:00
package ecs
type (
EventType[T any] struct {
eventName string
componentType *ComponentType[T]
w World
}
Subscriber[T any] func(w *World, event T)
)