Files
gorpg/main.go
T
2023-06-28 17:21:36 +02:00

19 lines
235 B
Go
Executable File

package main
import (
"game/domain"
"game/presenter"
)
func main() {
context := domain.CreateContext()
domain := domain.Domain{
Context: context,
Presenter: presenter.Presenter{
Context: context,
},
}
domain.Init()
}