mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 21:34:15 +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
|