2024-12-12 23:10:48 +00:00
|
|
|
// Grundsätzlich erstmal nur zum Testen
|
|
|
|
|
2024-12-18 19:26:28 +00:00
|
|
|
#include <stdio.h>
|
2024-12-12 23:10:48 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <locale>
|
|
|
|
#include <string>
|
2024-12-13 01:31:59 +00:00
|
|
|
#include <iomanip>
|
2024-12-18 19:26:28 +00:00
|
|
|
#include "Chessboard.cpp"
|
2024-12-12 23:10:48 +00:00
|
|
|
|
|
|
|
int main() {
|
2024-12-13 01:31:59 +00:00
|
|
|
SetConsoleOutputCP(CP_UTF8);
|
|
|
|
|
2024-12-18 19:26:28 +00:00
|
|
|
Chessboard chessboard;
|
|
|
|
chessboard.draw();
|
2024-12-13 01:31:59 +00:00
|
|
|
|
|
|
|
return 0;
|
2024-12-12 23:10:48 +00:00
|
|
|
}
|