Files
bomberman/Sol.cpp
T
2025-05-31 19:49:26 +02:00

13 lines
221 B
C++

#include "Sprite.hpp"
Sol::Sol() {
// Constructor implementation
std::cout << "Sol created." << std::endl;
}
Sol::~Sol() {
// Destructor implementation
std::cout << "Sol destroyed." << std::endl;
}