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

9 lines
267 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) {
console.log("Start game");
gameState.clearChoices();
}
}