This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/Logic/BlockDescriptor.cs
Drew DeVault 939a6dc79c Render snow variation of grass blocks
This also increases the average rainfall everywhere so that fucking
deserts are less common
2015-06-20 11:01:07 -04:00

17 lines
351 B
C#

using System;
using TrueCraft.API.World;
namespace TrueCraft.API.Logic
{
public struct BlockDescriptor
{
public byte ID;
public byte Metadata;
public byte BlockLight;
public byte SkyLight;
// Optional
public Coordinates3D Coordinates;
// Optional
public IChunk Chunk;
}
}