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.
16 lines
374 B
16 lines
374 B
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() {}
|
|
|