mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
20bb7fd119
Updated to Doom Builder 2 SVN rev. 1549.
20 lines
363 B
C#
20 lines
363 B
C#
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Text;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer
|
|
{
|
|
internal enum PointResult : int
|
|
{
|
|
OK = 0,
|
|
BadZ = -1,
|
|
Void = -2,
|
|
Overflow = -3,
|
|
}
|
|
}
|