1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[server] Add plane name property to Chunk for serialistion purposes.... which doesn't appear to be working right. Hrm.

This commit is contained in:
Starbeamrainbowlabs 2017-05-04 21:37:22 +01:00
parent 53f5d9e400
commit abce0b2af7

View file

@ -44,6 +44,16 @@ namespace Nibriboard.RippleSpace
/// </summary> /// </summary>
private Plane plane; private Plane plane;
/// <summary>
/// The name of the plane that this chunk is on.
/// </summary>
/// <value>The name of the plane.</value>
public string PlaneName {
get {
return plane.Name;
}
}
/// <summary> /// <summary>
/// The lines that this chunk currently contains. /// The lines that this chunk currently contains.
/// </summary> /// </summary>