ajout de Sprite et de TILES

This commit is contained in:
YANNIS
2025-05-31 19:49:26 +02:00
parent c3b47c30c4
commit 90c5485fc5
9 changed files with 46 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "Sprite.hpp"
Sol::Sol() {
// Constructor implementation
std::cout << "Sol created." << std::endl;
}
Sol::~Sol() {
// Destructor implementation
std::cout << "Sol destroyed." << std::endl;
}