fishfightback/flags_web.go

16 lines
238 B
Go
Raw Normal View History

2022-06-11 08:46:36 +00:00
//go:build js && wasm
// +build js,wasm
package main
import (
"code.rocketnine.space/tslocum/fishfightback/world"
"github.com/hajimehoshi/ebiten/v2"
)
func parseFlags() {
world.World.DisableEsc = true
ebiten.SetFullscreen(true)
}