mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +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,
|
|
};
|
|
}
|