mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-11 17:25:01 +03:00
10 lines
113 B
Go
10 lines
113 B
Go
package main
|
|
|
|
import (
|
|
"mvvasilev/last_light/game"
|
|
)
|
|
|
|
func main() {
|
|
gc := game.CreateGameContext()
|
|
gc.Run()
|
|
}
|