io.scalajs.dom.html.phaser.Signal.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
import scala.scalajs.js
import scala.scalajs.js.annotation.JSName
@js.native
@JSName("Phaser.Signal")
class Signal extends js.Object {
def addOnce(listener: js.ThisFunction0[_, _], listenerContext: Any, priority: Int, args: Any*): SignalBinding =
js.native
def addOnce(listener: js.ThisFunction0[_, _], listenerContext: Any = this, priority: Int = 0): SignalBinding =
js.native
def add(listener: js.ThisFunction0[_, _], listenerContext: Any, priority: Int, args: Any*): SignalBinding = js.native
def add(listener: js.ThisFunction0[_, _], listenerContext: Any = this, priority: Int = 0): SignalBinding = js.native
}