mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
13 lines
191 B
C++
13 lines
191 B
C++
|
#include "GuiComponent.h"
|
||
|
#include "Renderer.h"
|
||
|
|
||
|
GuiComponent::GuiComponent()
|
||
|
{
|
||
|
Renderer::registerComponent(this);
|
||
|
}
|
||
|
|
||
|
GuiComponent::~GuiComponent()
|
||
|
{
|
||
|
Renderer::unregisterComponent(this);
|
||
|
}
|