C++ SFML :: TETRIS GAME
https://www.youtube.com/watch?v=zH_omFPqMO4 위의 영상을 그대로 따라 만든 것 해야할 일 ) - 여기에 사용된 함수 및 변수 등 코드 분석 - GameOver 기능 추가해보기 - 2인용 테트리스 게임 만들어보기 #include #include using namespace sf; const int M = 20; const int N = 10; int field[M][N]; struct Point { int x, y; }; Point a[4]; Point b[4]; int figures[7][4] = { 1,3,5,7, // I 2,4,5,7, // Z 3,5,4,6, // S 3,5,4,7, // T 2,3,5,7, // L 3,5,7,6, // J 2,3,4,5, // ..