last_light/main.go

14 lines
170 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
}
2024-05-18 20:38:46 +03:00
func runGame() {
gc := game.CreateGameContext()
gc.Run()
}