mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
18 lines
325 B
C#
18 lines
325 B
C#
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Map
|
|
{
|
|
public struct Subsector
|
|
{
|
|
public int numsegs;
|
|
public int firstseg;
|
|
|
|
public Vector2D[] points;
|
|
public FlatVertex[] vertices;
|
|
}
|
|
}
|