diff --git a/Nibriboard/Client/RawChunkReference.cs b/Nibriboard/Client/RawChunkReference.cs new file mode 100644 index 0000000..3af593b --- /dev/null +++ b/Nibriboard/Client/RawChunkReference.cs @@ -0,0 +1,11 @@ +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; + } +} \ No newline at end of file