phaser3-rex-plugins
Version:
11 lines (10 loc) • 348 B
JavaScript
import PreLayoutBase from '../basesizer/PreLayout.js';
var PreLayout = function () {
this._totalColumnProportions = undefined;
this._totalRowProportions = undefined;
this.proportionWidthLength = undefined;
this.proportionHeightLength = undefined;
PreLayoutBase.call(this);
return this;
}
export default PreLayout;