UNPKG

phaser4-rex-plugins

Version:
57 lines (48 loc) 1.92 kB
import SetTableOY from './SetTableOY.js'; import SetTableOX from './SetTableOX.js'; import ChildrenMaskMethods from '../../../container/containerlite/mask/ChildrenMaskMethods.js'; import ShowCells from './updatetable/ShowCells.js'; import ShowCell from './updatetable/ShowCell.js'; import GetCellTLX from './updatetable/GetCellTLX.js'; import GetCellTLY from './updatetable/GetCellTLY.js'; import HideCells from './updatetable/HideCells.js'; import HideCell from './updatetable/HideCell.js'; import UpdateTable from './updatetable/UpdateTable.js'; import IsCellVisible from './IsCellVisible.js'; import { PointToCellIndex, PointToCellContainer } from './PointToCell.js'; import { EachVisibleCell, IterateVisibleCell, EachCell, IterateCell } from './EachCell.js'; import SetCellsCount from './SetCellsCount.js'; import InsertNewCells from './InsertNewCells.js'; import RemoveCells from './RemoveCells.js'; import SetColumnCount from './SetColumnCount.js'; import SetGridSize from './SetGridSize.js'; import UpdateVisibleCell from './UpdateVisibleCell'; var methods = { setTableOY: SetTableOY, setTableOX: SetTableOX, showCells: ShowCells, showCell: ShowCell, getCellTLX: GetCellTLX, getCellTLY: GetCellTLY, hideCells: HideCells, hideCell: HideCell, updateTable: UpdateTable, isCellVisible: IsCellVisible, pointToCellIndex: PointToCellIndex, pointToCellContainer: PointToCellContainer, eachVisibleCell: EachVisibleCell, iterateVisibleCell: IterateVisibleCell, eachCell: EachCell, iterateCell: IterateCell, setCellsCount: SetCellsCount, insertNewCells: InsertNewCells, removeCells: RemoveCells, setColumnCount: SetColumnCount, setGridSize: SetGridSize, updateVisibleCell: UpdateVisibleCell } Object.assign( methods, ChildrenMaskMethods ); export default methods;