2021-05-27 11:40:11 -04:00
|
|
|
package skullsebitenbind
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/mobile"
|
|
|
|
"github.com/rootVIII/skulls"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
2021-05-29 22:07:49 -04:00
|
|
|
game, err := skulls.Load()
|
2021-05-27 11:40:11 -04:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-05-29 22:07:49 -04:00
|
|
|
mobile.SetGame(game)
|
2021-05-27 11:40:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dummy forces gomobile to compile this package.
|
|
|
|
func Dummy() {}
|