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

6 lines
57 B
Go

package ecs
type ISystem interface {
Update(w World)
}