1
0
Fork 0
Nibriboard/Nibriboard/RippleSpace/LocationReference.cs

14 lines
224 B
C#

using System;
namespace Nibriboard.RippleSpace
{
/// <summary>
/// Represents a location in absolute plane-space.
/// </summary>
public class LocationReference : Reference
{
public LocationReference()
{
}
}
}