mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
14 lines
237 B
C#
14 lines
237 B
C#
|
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer
|
|||
|
{
|
|||
|
internal struct TilePoint
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public int y;
|
|||
|
public byte granularity;
|
|||
|
}
|
|||
|
}
|