Spellcheck and added comments

This commit is contained in:
Timothy O'Barr
2026-08-18 12:04:39 -05:00
parent db2cb3aeea
commit 707b88c736
2 changed files with 6 additions and 9 deletions
+2 -6
View File
@@ -1,13 +1,9 @@
#include <fstream>
#include <ios>
#include <iostream>
#include "game.h"
int main(int argc, char *argv[]) {
Game game; // Calls default constructor which Initalizes GAME
Game game; // Calls default constructor which Initializes GAME
while (game.GetIsActive()) {
while (Game::GetIsActive()) {
game.Run();
}