about summary refs log tree commit diff stats
path: root/html/tower/js/game.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/tower/js/game.js')
-rw-r--r--html/tower/js/game.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/html/tower/js/game.js b/html/tower/js/game.js
index 7495fbe..4d8ed39 100644
--- a/html/tower/js/game.js
+++ b/html/tower/js/game.js
@@ -1,3 +1,13 @@
+// generate updated docs
+// jsdoc js -d docs
+
+/**
+ * Main game entry point
+ * Initializes the game state and starts the game loop
+ * 
+ * @module game
+ */
+
 /** Canvas elements for rendering the game */
 const canvas = document.getElementById('gameCanvas');
 const ctx = canvas.getContext('2d');