13 lines
221 B
C++
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;
|
|
}
|