iswhoa/public/scripts/controllers/clearstate.js
2025-06-22 14:06:49 +02:00

8 lines
232 B
JavaScript

import { Controller } from "https://unpkg.com/@hotwired/stimulus/dist/stimulus.js";
import { gameState } from "./gamestate.js";
export default class extends Controller {
startGame(ev) {
gameState.clearChoices();
}
}