mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
16 lines
265 B
C++
16 lines
265 B
C++
#pragma once
|
|
#ifndef __PL_VIRTUALDIRECTORY_H__
|
|
#define __PL_VIRTUALDIRECTORY_H__
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
enum EVirtualDirectory
|
|
{
|
|
EVirtualDirectory_ApplicationData = 1,
|
|
EVirtualDirectory_GameData,
|
|
EVirtualDirectory_Prefs,
|
|
};
|
|
}
|
|
|
|
#endif
|