It's the classic game Snake but for two people! Eat apples to grow and try to make your opponent crash. Each apple also makes your snake a little faster. Controls are WASD and Arrow Keys. You can go through the walls.
Concept: Wanted to make a twist on the Snake genre Graphics: Created in Photoshop Code: Original Title Screen Music: "Title Screen" by Toby Fox (Undertale) Main Game Music: "Level 1" by Master Blaster Soundtrack Code Notes: * Moved all the code into one sprite to avoid issues with events overlapping each other * Gave each Snake an "input cache" so the game doesn't lose any keystrokes (eg if you hit Down then Left really fast it remembers both commands) * Implemented a "Circular Buffer" for each snake to store the location of the body, and a "Head Index" and "Tail Index" to move the ends independently * Used Timer to control speed, allows for each snake to change speed independently