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

11 lines
211 B
C#
Raw Normal View History

2017-06-24 19:19:57 +00:00
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;
}
}