1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00
Nibriboard/Nibriboard/RippleSpace/PlaneInfo.cs
Starbeamrainbowlabs 34d74281e3 Extensively refactor core to allow for loading. Also work on a bit of saving too.
Now I can see why they say that you should build this in from the beginning....
2017-07-18 20:43:34 +01:00

24 lines
356 B
C#

using System;
namespace Nibriboard.RippleSpace
{
public class PlaneInfo
{
public string Name { get; set; }
public int ChunkSize { get; set; }
public PlaneInfo()
{
}
public PlaneInfo(string inName) : this(inName, 1024)
{
}
public PlaneInfo(string inName, int inChunkSize)
{
Name = inName;
ChunkSize = inChunkSize;
}
}
}