mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
17 lines
334 B
C#
Executable file
17 lines
334 B
C#
Executable file
#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;
|
|
}
|
|
}
|