1 package mobile 2 3 import ( 4 "code.rocketnine.space/tslocum/kibodo/demos/kibodo/game" 5 "github.com/hajimehoshi/ebiten/v2/mobile" 6 ) 7 8 func init() { 9 mobile.SetGame(game.NewDemoGame()) 10 } 11 12 // Dummy is a dummy exported function. 13 // 14 // gomobile will only compile packages that include at least one exported function. 15 // Dummy forces gomobile to compile this package. 16 func Dummy() {} 17