Asset prog

This commit is contained in:
2025-08-25 10:16:55 -05:00
parent 947f21cac7
commit 8af2f044ed
23 changed files with 290 additions and 31 deletions

View File

@@ -7,11 +7,19 @@
#pragma once
#include "dusk.h"
#include <zip.h>
#define ASSET_FILENAME_MAX 256
typedef struct asset_s {
int32_t nothing;
const char_t *filename;
zip_file_t *fileHandle;
} asset_t;
void assetInit(void);
void assetInit(
const char_t *filename,
);
void assetDispose(void);