mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
21 lines
320 B
C++
21 lines
320 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();
|
|
|
|
std::vector<GuiComponent*> renderVector;
|
|
}
|
|
|
|
#endif
|