skulls/skullsebitenbind/main.go
2021-05-27 11:40:11 -04:00

18 lines
274 B
Go

package skullsebitenbind
import (
"github.com/hajimehoshi/ebiten/v2/mobile"
"github.com/rootVIII/skulls"
)
func init() {
sp, err := skulls.Play()
if err != nil {
panic(err)
}
mobile.SetGame(sp)
}
// Dummy forces gomobile to compile this package.
func Dummy() {}