Let AI refactor everything and see if it breaks.

This commit is contained in:
2026-03-29 00:59:27 +01:00
parent 561b99b710
commit b873ac24ca
11 changed files with 656 additions and 576 deletions

24
include/game_state.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef GAME_STATE_H
#define GAME_STATE_H
#include <array>
#include <deque>
#include <vector>
#include <nds/ndstypes.h>
struct GameState {
volatile uint16_t ticks = 0;
volatile uint16_t snakelength = 0;
volatile uint16_t snakeDirection = 1;
volatile uint16_t score = 0;
bool gameOver = false;
bool paused = false;
bool hardMode = false;
std::deque<std::array<int, 3>> snake;
std::vector<std::array<int, 2>> apples;
std::vector<std::array<int, 2>> bad_apples;
};
#endif