0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-03-02 07:41:51 +00:00
UltimateZoneBuilder/Source/Plugins/VisplaneExplorer/PointResult.cs
2014-02-21 14:42:12 +00:00

14 lines
235 B
C#

#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,
}
}