1
0
Fork 0
Nibriboard/Nibriboard/Client/RawChunkReference.cs

11 lines
211 B
C#

using System;
namespace Nibriboard.Client
{
public class RawChunkReference
{
public string planeName { get; set; } = string.Empty;
public int x { get; set; } = 0;
public int y { get; set; } = 0;
}
}