mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
This commit contains only the result of `git add --renormalize .` `git show --ignore-space-change` can verify that this commit only changes whitespace.
21 lines
310 B
C++
21 lines
310 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,
|
|
};
|
|
}
|