mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-15 00:51:39 +00:00
18 lines
304 B
C#
18 lines
304 B
C#
|
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Map
|
|||
|
{
|
|||
|
public struct Seg
|
|||
|
{
|
|||
|
public int startvertex;
|
|||
|
public int endvertex;
|
|||
|
public float angle;
|
|||
|
public int lineindex;
|
|||
|
public bool leftside;
|
|||
|
public float offset;
|
|||
|
public int ssector;
|
|||
|
}
|
|||
|
}
|