Files
Lab9_UNIX/main.cpp
T
2026-06-05 11:45:04 +03:00

14 lines
138 B
C++

#include "core/Tetris.h"
#include <locale.h>
int main()
{
setlocale(LC_ALL, "");
Tetris game;
game.run();
return 0;
}