last_light/main.go

10 lines
113 B
Go

package main
import (
"mvvasilev/last_light/game"
)
func main() {
gc := game.CreateGameContext()
gc.Run()
}