UNPKG

phaser3-rex-plugins-types

Version:

[![npm](https://img.shields.io/npm/v/phaser3-rex-plugins-types.svg)](https://www.npmjs.com/package/phaser3-rex-plugins-types) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![B

15 lines (12 loc) 642 B
declare module 'phaser3-rex-plugins/plugins/board-plugin' { import * as Phaser from 'phaser'; import HexagonMap from 'phaser3-rex-plugins/plugins/board/hexagonmap'; import ObjectFactory from 'phaser3-rex-plugins/plugins/board/ObjectFactory'; import CreateTileTexture from 'phaser3-rex-plugins/plugins/board/texture/CreateTileTexture'; export default class BoardPlugin extends Phaser.Plugins.ScenePlugin { add: ObjectFactory; hexagonMap: typeof HexagonMap; createTileTexture: typeof CreateTileTexture; constructor(scene: Phaser.Scene, pluginManager: Phaser.Plugins.PluginManager); } }