From 2973df584978d9aae6f164ce0204179c8a28b3ae Mon Sep 17 00:00:00 2001 From: 2lag <96544487+2lag@users.noreply.github.com> Date: Sat, 8 Aug 2026 17:33:36 +0200 Subject: console, textbox changes, some other shit --- src/game/assets.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/game/assets.h') diff --git a/src/game/assets.h b/src/game/assets.h index d0fe270..9841f40 100644 --- a/src/game/assets.h +++ b/src/game/assets.h @@ -1,9 +1,11 @@ #pragma once #include "../util/typedef.h" #include "../util/file.h" +#include "SDL_mouse.h" typedef struct { + SDL_Cursor* cursors[SDL_NUM_SYSTEM_CURSORS]; struct GL_FONT* font; struct GL_FONT* jpn12; struct GL_FONT* jpn16; @@ -13,6 +15,7 @@ typedef struct { } GAME_ASSETS; extern void assets_init( struct GAME_DATA* game ); +extern void assets_destroy( struct GAME_DATA* game ); extern void assets_create_fonts( struct GAME_DATA* game ); // extensions is a null-terminated array of null-terminated strings. extern LIST assets_get_files_by_ext_dir( const char** extensions, const char* dir ); -- cgit v1.2.3