Some checks failed
Build Dusk / run-tests (push) Failing after 1m23s
Build Dusk / build-linux (push) Failing after 1m47s
Build Dusk / build-psp (push) Failing after 1m41s
18 lines
460 B
C
18 lines
460 B
C
/**
|
|
* Copyright (c) 2025 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "display/tileset/tileset.h"
|
|
#include "display/texture.h"
|
|
|
|
/**
|
|
* Renders the debug information UI element.
|
|
*
|
|
* @param tileset The tileset to use for rendering text.
|
|
* @param texture The texture associated with the tileset.
|
|
*/
|
|
void uiDebugRender(const tileset_t *tileset, texture_t *texture); |