mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
29 lines
464 B
C++
29 lines
464 B
C++
#pragma once
|
|
|
|
namespace GpFileSystem_Web_Resources
|
|
{
|
|
struct FileCatalogEntry
|
|
{
|
|
const char *m_fileName;
|
|
const unsigned char *m_data;
|
|
const unsigned int m_size;
|
|
};
|
|
|
|
struct FileCatalog
|
|
{
|
|
const FileCatalogEntry *m_entries;
|
|
const unsigned int m_numEntries;
|
|
const unsigned int m_size;
|
|
const unsigned int m_size0;
|
|
};
|
|
|
|
namespace ApplicationData
|
|
{
|
|
const FileCatalog &GetCatalog();
|
|
}
|
|
namespace GameData
|
|
{
|
|
const FileCatalog &GetCatalog();
|
|
}
|
|
}
|