summaryrefslogtreecommitdiff
path: root/src/embedded-file.hpp
blob: 0a86b102f93910a0653581ed795dbd2a09c79e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PKE_AT_EMBEDDED_FILE_HPP
#define PKE_AT_EMBEDDED_FILE_HPP

#include <pke/asset-manager.hpp>
#include <pke/asset-types.h>

struct embedded_file {
	AssetKey key;
	const unsigned char *data;
	const unsigned int size;
	AssetHandle handle = AssetHandle_MAX;
};

#endif /* PKE_AT_EMBEDDED_FILE_HPP */