0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-03-05 17:30:47 +00:00
UltimateZoneBuilder/Source/Plugins/NodesViewer/Seg.cs

18 lines
334 B
C#
Raw Normal View History

2013-03-18 13:52:27 +00:00
#region === Copyright (c) 2010 Pascal van der Heiden ===
#endregion
namespace CodeImp.DoomBuilder.Plugins.NodesViewer
{
public struct Seg
{
public int startvertex;
public int endvertex;
public float angle;
public int lineindex;
public bool leftside;
public float offset;
public int ssector;
}
}