mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
19 lines
277 B
C
19 lines
277 B
C
|
#ifndef _RENDERER_H_
|
||
|
#define _RENDERER_H_
|
||
|
|
||
|
#define LAYER_COUNT 3
|
||
|
|
||
|
#define BIT(x) (1 << (x))
|
||
|
|
||
|
#include "GuiComponent.h"
|
||
|
#include <vector>
|
||
|
namespace Renderer
|
||
|
{
|
||
|
void registerComponent(GuiComponent* comp);
|
||
|
void unregisterComponent(GuiComponent* comp);
|
||
|
|
||
|
void render();
|
||
|
}
|
||
|
|
||
|
#endif
|