0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-02-23 20:31:46 +00:00
UltimateZoneBuilder/Source/Plugins/NodesViewer/Node.cs
2017-01-15 00:35:40 +02:00

22 lines
480 B
C#
Executable file

#region === Copyright (c) 2010 Pascal van der Heiden ===
using System.Drawing;
using CodeImp.DoomBuilder.Geometry;
#endregion
namespace CodeImp.DoomBuilder.Plugins.NodesViewer
{
public struct Node
{
public Vector2D linestart;
public Vector2D linedelta;
public RectangleF rightbox;
public RectangleF leftbox;
public int rightchild;
public int leftchild;
public bool rightsubsector;
public bool leftsubsector;
public int parent;
}
}