Organization, render cursor above all else

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-09-29 18:51:43 +03:00
parent a6949eeda0
commit 28a9f54227
18 changed files with 3499 additions and 3408 deletions

11
src/LunarWM_render.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef LUNAR_WM_RENDER_H
#define LUNAR_WM_RENDER_H
#include "LunarWM_types.h"
void LunarWM_render_hud(LunarWM *wm, float dt, int hud_size);
void LunarWM_render_windows(LunarWM *wm, bool alpha_check);
bool LunarWM_render_layer(
LunarWM *wm, LunarWM_RenderLayerInfo *info, float dt);
#endif