mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
22 lines
373 B
C#
22 lines
373 B
C#
|
#region === Copyright (c) 2010 Pascal van der Heiden ===
|
|||
|
|
|||
|
using CodeImp.DoomBuilder.Geometry;
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Plugins.NodesViewer
|
|||
|
{
|
|||
|
public struct Split
|
|||
|
{
|
|||
|
public Vector2D pos;
|
|||
|
public Vector2D delta;
|
|||
|
|
|||
|
// Constructor
|
|||
|
public Split(Vector2D pos, Vector2D delta)
|
|||
|
{
|
|||
|
this.pos = pos;
|
|||
|
this.delta = delta;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|