Files
tetris/includes/Game.hpp
2026-01-09 14:03:09 +01:00

15 lines
247 B
C++

// Celebrating tetris by Ley 2024
#pragma once
// SMFL headers
#include <SFML/Graphics.hpp>
#include <SFML/System.hpp>
// Cxx headers
#include <iostream>
#include "./Tetrominos.hpp"
sf::Color getTetrominoColor(const Tetrominos::Names &name);