18 lines
278 B
Go
18 lines
278 B
Go
package skullsebitenbind
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten/v2/mobile"
|
|
"github.com/rootVIII/skulls"
|
|
)
|
|
|
|
func init() {
|
|
|
|
game, err := skulls.Load()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
mobile.SetGame(game)
|
|
}
|
|
|
|
// Dummy forces gomobile to compile this package.
|
|
func Dummy() {}
|