last_light/main.go

9 lines
108 B
Go
Raw 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
}