1
0

GetSnowStartHeight returns an int

This commit is contained in:
STRWarrior 2015-02-28 17:27:28 +01:00
parent 81e8577cfd
commit 224df08d30
2 changed files with 2 additions and 2 deletions

View File

@ -223,7 +223,7 @@ bool IsBiomeCold(EMCSBiome a_Biome)
unsigned GetSnowStartHeight(EMCSBiome a_Biome)
int GetSnowStartHeight(EMCSBiome a_Biome)
{
switch (a_Biome)
{

View File

@ -130,6 +130,6 @@ Doesn't report Very Cold biomes, use IsBiomeVeryCold() for those. */
extern bool IsBiomeCold(EMCSBiome a_Biome);
/** Returns the height when a biome when a biome starts snowing.*/
extern unsigned GetSnowStartHeight(EMCSBiome a_Biome);
extern int GetSnowStartHeight(EMCSBiome a_Biome);
// tolua_end