added first game rendering engine

This commit is contained in:
Jannis Heydemann
2026-04-22 15:13:33 +02:00
commit c68ba4e9dd
8 changed files with 210 additions and 0 deletions

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 4.2)
project(TicTacToe)
set(CMAKE_CXX_STANDARD 20)
add_executable(TicTacToe main.cpp)