1
0
Fork 0

[server] Add missing RawChunkReference

This commit is contained in:
Starbeamrainbowlabs 2017-06-24 20:19:57 +01:00
parent 55cdcf982c
commit 2929bca212
1 changed files with 11 additions and 0 deletions

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