mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-02 21:55:28 +00:00
21 lines
312 B
C
21 lines
312 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
enum PlotDirection
|
||
|
|
{
|
||
|
|
PlotDirection_NegX_NegY,
|
||
|
|
PlotDirection_0X_NegY,
|
||
|
|
PlotDirection_PosX_NegY,
|
||
|
|
|
||
|
|
PlotDirection_NegX_PosY,
|
||
|
|
PlotDirection_0X_PosY,
|
||
|
|
PlotDirection_PosX_PosY,
|
||
|
|
|
||
|
|
PlotDirection_NegX_0Y,
|
||
|
|
PlotDirection_PosX_0Y,
|
||
|
|
|
||
|
|
PlotDirection_Exhausted,
|
||
|
|
};
|
||
|
|
}
|