PlatformDevice provides an abstract way of describing things that depend on the platform:

  • Device Vibration
  • App Termination
  • Device-Specific Event Handlers
  • Persistent Storage
interface PlatformDevice {
    accelerometerMode: AccelerometerMode;
    quitter(): void;
    vibrate(ms): void;
}

Implemented by

Properties

accelerometerMode: AccelerometerMode

The behavior of the device accelerometer

Methods

  • Quit the game and close its window

    Returns void

  • Vibrate the device for some number of milliseconds

    Parameters

    • ms: number

      The number of milliseconds to vibrate

    Returns void