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

24 lines
356 B
C#
Raw Normal View History

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;
}
}
}