mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2026-03-18 05:12:23 +01:00
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
import TilorswiftEvent from "./TilorswiftEvent.js";
|
|
|
|
export default class TilorswiftTilesetSelectedEvent extends Event
|
|
{
|
|
constructor(tilesetIndex) {
|
|
super(TilorswiftEvent.TILESET_SELECTED);
|
|
this.tilesetIndex = tilesetIndex;
|
|
}
|
|
} |