mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
15 lines
221 B
C++
15 lines
221 B
C++
![]() |
#ifndef OPENMW_COMPONENTS_VFS_FILEMAP_H
|
||
|
#define OPENMW_COMPONENTS_VFS_FILEMAP_H
|
||
|
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
|
||
|
namespace VFS
|
||
|
{
|
||
|
class File;
|
||
|
|
||
|
using FileMap = std::map<std::string, File*, std::less<>>;
|
||
|
}
|
||
|
|
||
|
#endif
|