Hello WWWWWWorld!

This commit is contained in:
Ethan Lee
2020-01-01 15:29:24 -05:00
commit f7c0321b71
133 changed files with 154973 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
#ifndef BINARYBLOB_H
#define BINARYBLOB_H
/* Laaaazyyyyyyy -flibit */
// #define VVV_COMPILEMUSIC
struct resourceheader
{
char name[48];
int start;
int size;
bool valid;
};
class binaryBlob
{
public:
binaryBlob();
#ifdef VVV_COMPILEMUSIC
void AddFileToBinaryBlob(const char* _path);
void writeBinaryBlob(const char* _name);
#endif
bool unPackBinary(const char* _name);
int getIndex(const char* _name);
int getSize(int _index);
char* getAddress(int _index);
private:
int numberofHeaders;
resourceheader m_headers[128];
char* m_memblocks[128];
};
#endif /* BINARYBLOB_H */