A Test Here

This commit is contained in:
Robert
2025-02-21 23:00:30 -06:00
committed by GitHub
parent a627ada3eb
commit b5762c428e
3 changed files with 75 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
document.getElementById('startButton').addEventListener('click', function() {
alert('Starting the game...');
});
document.getElementById('settingsButton').addEventListener('click', function() {
alert('Opening settings...');
// Add your settings logic here
});
document.getElementById('exitButton').addEventListener('click', function() {
alert('Exiting the game...');
// Add your exit logic here
});