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:
parent
55cdcf982c
commit
2929bca212
1 changed files with 11 additions and 0 deletions
11
Nibriboard/Client/RawChunkReference.cs
Normal file
11
Nibriboard/Client/RawChunkReference.cs
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue