mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-12 05:02:21 +00:00
20 lines
365 B
C#
20 lines
365 B
C#
|
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Globalization;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Plugins.VisplaneExplorer
|
|||
|
{
|
|||
|
internal struct TilePoint
|
|||
|
{
|
|||
|
public int x;
|
|||
|
public int y;
|
|||
|
public byte granularity;
|
|||
|
}
|
|||
|
}
|