mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
16 lines
245 B
C++
16 lines
245 B
C++
#include <iostream>
|
|
#include "LightManager.h"
|
|
|
|
Light_Manager::Light_Manager() :
|
|
commonBlurEffectLoaded(false)
|
|
{
|
|
std::cout << "Creating Light Manager";
|
|
}
|
|
Light_Manager::~Light_Manager()
|
|
{
|
|
std::cout << "Destroying Light Manager";
|
|
}
|
|
|
|
|
|
|