Added some string functions and macros Added path listing on windows Added assets
17 lines
236 B
C
17 lines
236 B
C
#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_
|