From f3188cb0892ed398112b3d14f444e01b79de6f12 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 17 May 2020 09:35:43 -0700 Subject: [PATCH] empires: Rename all files (html, js, and css) to game.* These are all the files for manipulating a single instance of a game. We're moving this away from index.html so that we can have a separate page at index.html for giving game instructions and allowing users to host a new game. So, along with the new name of game.html, we also rename supporting files to game.css and game.js to be consistent. --- empires/{style.css => game.css} | 0 empires/{index.html => game.html} | 4 ++-- empires/{empires-client.js => game.js} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename empires/{style.css => game.css} (100%) rename empires/{index.html => game.html} (95%) rename empires/{empires-client.js => game.js} (100%) diff --git a/empires/style.css b/empires/game.css similarity index 100% rename from empires/style.css rename to empires/game.css diff --git a/empires/index.html b/empires/game.html similarity index 95% rename from empires/index.html rename to empires/game.html index 4f29c65..d665ce7 100644 --- a/empires/index.html +++ b/empires/game.html @@ -8,11 +8,11 @@ - + - +
diff --git a/empires/empires-client.js b/empires/game.js similarity index 100% rename from empires/empires-client.js rename to empires/game.js -- 2.43.0