scene crap
This commit is contained in:
26
src/ui/ui.c
Normal file
26
src/ui/ui.c
Normal file
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* Copyright (c) 2025 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#include "ui.h"
|
||||
|
||||
ui_t UI;
|
||||
|
||||
void uiInit(void) {
|
||||
// Initialize UI components here
|
||||
}
|
||||
|
||||
void uiUpdate(void) {
|
||||
// Update UI state here
|
||||
}
|
||||
|
||||
void uiRender(void) {
|
||||
// Render UI elements here
|
||||
}
|
||||
|
||||
void uiDispose(void) {
|
||||
// Clean up UI resources here
|
||||
}
|
||||
Reference in New Issue
Block a user