mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
Emscripten port
This commit is contained in:
28
AerofoilWeb/GpFileSystem_Web_Resources.h
Normal file
28
AerofoilWeb/GpFileSystem_Web_Resources.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user