0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/ZoneBuilder.git synced 2025-03-13 14:12:33 +00:00
ZoneBuilder/Source/Plugins/VisplaneExplorer/TilePoint.cs

13 lines
224 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;
}
}