Added image loading

Added some string functions and macros
Added path listing on windows
Added assets
This commit is contained in:
2025-10-04 17:24:30 +01:00
parent 7d55b16c8e
commit b1a805cea8
17 changed files with 617 additions and 5 deletions

16
code/game/core.h Normal file
View File

@@ -0,0 +1,16 @@
#if !defined(LD_GAME_CORE_H_)
#define LD_GAME_CORE_H_
typedef struct G_Image G_Image;
struct G_Image {
Vk_Image image;
Str8 name;
U32 width;
U32 height;
};
function void G_ImagesLoad(M_Arena *arena);
#endif // LD_GAME_CORE_H_