From f050e36a3cfacd67fa6bf1319effff4cf19db04a Mon Sep 17 00:00:00 2001 From: Dangrain Date: Sun, 16 Mar 2025 23:08:30 +0100 Subject: [PATCH] Create README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8b5850d --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +A 2D hacking game written in Lua for Love2D. Made specifically as a way to kind of patch the unholy voodoo that was my Gunpoint knockoff. + +I noticed that with Grainpoint, my code was written In such a way that any form of expansion was made 20 times more complex than It needed to be due to me writing my code very sparatically and messily. +This Is the opposite of that. +I'm avoiding needless lines when the needed data can be placed within a table (look at the player table) +And generally writing the code more cleanly, readably and to be generally more easily expandable.