You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
612 B
26 lines
612 B
//go:build !js || !wasm |
|
// +build !js !wasm |
|
|
|
package main |
|
|
|
import ( |
|
"flag" |
|
|
|
"code.rocketnine.space/tslocum/monovania/world" |
|
"github.com/hajimehoshi/ebiten/v2" |
|
) |
|
|
|
func parseFlags() { |
|
var ( |
|
fullscreen bool |
|
) |
|
flag.BoolVar(&fullscreen, "fullscreen", false, "run in fullscreen mode") |
|
flag.BoolVar(&world.World.CanDoubleJump, "doublejump", false, "start with double jump ability") |
|
flag.BoolVar(&world.World.CanLevitate, "levitate", false, "start with levitate ability") |
|
flag.IntVar(&world.World.Debug, "debug", 0, "print debug information") |
|
flag.Parse() |
|
|
|
if fullscreen { |
|
ebiten.SetFullscreen(true) |
|
} |
|
}
|
|
|