This commit is contained in:
2024-08-02 15:18:39 +02:00
parent cd1f96022c
commit e39c7dc647
9 changed files with 443140 additions and 2 deletions

7
src/Game.cpp Normal file
View File

@ -0,0 +1,7 @@
#include "Game.hpp"
#include "SDL.h"
void Game::Run() {
SDL_
}

10
src/Game.hpp Normal file
View File

@ -0,0 +1,10 @@
#pragma once
class Game {
public:
static void Run();
};

6
src/State.hpp Normal file
View File

@ -0,0 +1,6 @@
#pragma once
enum class State {
START, PLAY, GAME_OVER, WIN
};

443059
src/words.cpp Normal file

File diff suppressed because it is too large Load Diff

3
src/words.hpp Normal file
View File

@ -0,0 +1,3 @@
#pragma once
const char* words[];