mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-22 20:02:48 +00:00
3e5f85dc8f
Maintenance: removed a ton of redundant stuff.
14 lines
235 B
C#
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,
|
|
}
|
|
}
|