iswhoa/public/scripts/controllers/clearstate.js

8 lines
232 B
JavaScript
Raw Normal View History

2025-06-20 12:00:23 +00:00
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();
}
}