last_light/main.go

11 lines
113 B
Go
Raw Permalink Normal View History

2024-04-18 09:09:53 +03:00
package main
import (
"mvvasilev/last_light/game"
)
2024-04-18 09:09:53 +03:00
func main() {
gc := game.CreateGameContext()
gc.Run()
2024-04-18 09:09:53 +03:00
}