6517738949
- Enforced coding style - Improved perlin constants - Improved biome constants - Spawn plants before trees so plants may grow underneath - Fixed areas that were not deterministic
14 lines
346 B
C#
14 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TrueCraft.API.World
|
|
{
|
|
public interface IBiomeRepository
|
|
{
|
|
IBiomeProvider GetBiome(byte id);
|
|
IBiomeProvider GetBiome(double temperature, double rainfall);
|
|
void RegisterBiomeProvider(IBiomeProvider provider);
|
|
}
|
|
} |