Code Cleanup

David Vondracek
1 min readJul 14, 2023

--

Now that we’ve got the basic game in place and we’re getting unique update requests, we really should pay more attention to our codebase and version control.

I’ve gone through all the objects in the editor and made the naming more uniform. Underscores in the right place and such. Changing filenames as appropriate.

Then I went through all our code files and get rid of unneeded comments and extra lines. I also added a blank line between methods to improve readability.

And most importantly, I’ve pushed the whole thing up to GitHub for happy versioning. So recall, the full process for that is to pull the current code — so you don’t wipe out everyone else's work, and can see where you might be in trouble. Then add all the files you want to push. commit and give it a summary message. Then do the big push.

Ok — back to it. Let’s see if we got that powerup request while we were distracted with spring cleaning.

--

--