UltimateZoneBuilder/Source/Plugins/VisplaneExplorer/PointResult.cs
2017-01-15 00:35:40 +02:00

14 lines
235 B
C#
Executable file

#region === Copyright (c) 2010 Pascal van der Heiden ===
#endregion
namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer
{
internal enum PointResult : int
{
OK = 0,
BadZ = -1,
Void = -2,
Overflow = -3,
}
}