mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
3b6467851d
git-svn-id: svn://localhost@433 8062f311-0dae-4547-b526-b8ab9ac864a5
14 lines
221 B
C++
14 lines
221 B
C++
#include <iostream>
|
|
#include "LightManager.h"
|
|
|
|
Light_Manager::Light_Manager()
|
|
{
|
|
std::cout << "Creating Light Manager";
|
|
}
|
|
Light_Manager::~Light_Manager()
|
|
{
|
|
std::cout << "Destroying Light Manager";
|
|
}
|
|
|
|
|