
This also increases the average rainfall everywhere so that fucking deserts are less common
17 lines
351 B
C#
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;
|
|
}
|
|
} |