12 lines
207 B
C#
12 lines
207 B
C#
using System;
|
|
|
|
namespace TrueCraft.API.World
|
|
{
|
|
public struct BlockData
|
|
{
|
|
public byte ID;
|
|
public byte Metadata;
|
|
public byte BlockLight;
|
|
public byte SkyLight;
|
|
}
|
|
} |