Start implementing a test for the asset reading functionality

This commit is contained in:
Abdelrahman Said 2023-10-22 23:50:56 +01:00
parent 276867f76a
commit 2a8ddcfbd0

11
src/pakrd_test.c Normal file
View File

@ -0,0 +1,11 @@
#include "pak.h"
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
pak_read_t *pack = load_asset_pack("assets.pak");
printf("%p\n", (void *)pack);
return EXIT_SUCCESS;
}