Interface OperationPluginStatic

Operation Pluginの実装すべきstatic methodについての定義。

interface OperationPluginStatic {
    new OperationPluginStaticnew (game: any, viewInfo: null | OperationPluginViewInfo, option?: any): OperationPlugin;
    isSupported: (() => boolean);
}

Constructors

Properties

Constructors

  • OperationPluginを生成する。

    Parameters

    • game: any

      このプラグインに紐づく Game

    • viewInfo: null | OperationPluginViewInfo

      このプラグインが参照すべきviewの情報。環境によっては null でありうる。

    • Optionaloption: any

      game.jsonに指定されたこのプラグイン向けのオプション

    Returns OperationPlugin

Properties

isSupported: (() => boolean)

実行環境がこのpluginをサポートしているか返す。