MultiplayerMinesweeper/dist/server/illegalAction.js

12 lines
315 B
JavaScript

import { io } from "./io.js";
export class IllegalAction {
constructor(id, action) {
this.action = action;
this.id = id;
this.sendIllegalAction();
}
sendIllegalAction() {
io.to(this.id).emit('illegalAction', this.action);
}
}
//# sourceMappingURL=illegalAction.js.map