Files
gorpg/konstructor/entity/entity.engine.go
T
2023-07-05 18:45:17 +02:00

13 lines
189 B
Go

package entity
type EngineOptions struct {
Domain DomainInterface
KContext KContext
Settings Settings
}
type EngineWrapperInterface interface {
Init(options EngineOptions)
Run()
}