mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2026-03-18 05:12:23 +01:00
10 lines
294 B
JavaScript
10 lines
294 B
JavaScript
import TilorswiftEvent from "./TilorswiftEvent.js";
|
|
|
|
export default class TilorswiftAddColumnsEvent extends Event
|
|
{
|
|
constructor(beforeColumn, columnCount) {
|
|
super(TilorswiftEvent.ADD_COLUMNS);
|
|
this.beforeColumn = beforeColumn;
|
|
this.columnCount = columnCount;
|
|
}
|
|
} |