This repository has been archived on 2024-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
kibodo/demos/kibodo/game/mobile/mobile.go

17 lines
374 B
Go
Raw Normal View History

2021-08-30 19:48:39 +00:00
package mobile
import (
"code.rocketnine.space/tslocum/kibodo/demos/kibodo/game"
"github.com/hajimehoshi/ebiten/v2/mobile"
)
func init() {
mobile.SetGame(game.NewDemoGame())
}
// Dummy is a dummy exported function.
//
// gomobile will only compile packages that include at least one exported function.
// Dummy forces gomobile to compile this package.
func Dummy() {}