io.scalajs.dom.html.phaser.GameState.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phaser_sjs0.6_2.12 Show documentation
Show all versions of phaser_sjs0.6_2.12 Show documentation
Phaser 2.6.x bindings for Scala.js
package io.scalajs.dom.html.phaser
/**
* Phaser: Game State
* @version 2.6.2
* @author [email protected]
*/
trait GameState {
def preload(): Unit
def create(): Unit
def update(): Unit
def render(): Unit
}