#ifndef GAME_FILES_H
#define GAME_FILES_H
#include <stddef.h>
namespace Files {
size_t allocateBufferAndLoadFromFile(const char *path, void **bufferPointer);
void deleteBuffer(void *);
}
#endif //GAME_FILES_H
Powered by TurnKey Linux.