1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[server] Add missing RawChunkReference

This commit is contained in:
Starbeamrainbowlabs 2017-06-24 20:19:57 +01:00
parent 55cdcf982c
commit 2929bca212

View file

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