draw text.

This commit is contained in:
2025-09-02 23:01:15 -05:00
parent 1af2b8f47b
commit 059ccf41b6
5 changed files with 78 additions and 19 deletions

17
src/display/ui/ui.h Normal file
View File

@@ -0,0 +1,17 @@
/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "error/error.h"
#include "display/camera.h"
extern camera_t UI_CAMERA;
errorret_t uiInit(void);
void uiUpdate(void);
void uiRender(void);
void uiDispose(void);