15 lines
256 B
C
15 lines
256 B
C
#include "pak.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
pak_read_t *pack = load_asset_pack("assets.pak");
|
|
if (!pack) {
|
|
printf("Failed to load asset pack");
|
|
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|