mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
17 lines
327 B
C#
17 lines
327 B
C#
|
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer
|
||
|
{
|
||
|
internal struct PointData
|
||
|
{
|
||
|
public TilePoint point;
|
||
|
public PointResult result;
|
||
|
public int visplanes;
|
||
|
public int drawsegs;
|
||
|
public int solidsegs;
|
||
|
public int openings;
|
||
|
}
|
||
|
}
|