From 2929bca21200ef49c16e29a9b62849659062b0fc Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 24 Jun 2017 20:19:57 +0100 Subject: [PATCH] [server] Add missing RawChunkReference --- Nibriboard/Client/RawChunkReference.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Nibriboard/Client/RawChunkReference.cs 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