Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
18 lines
350 B
C++
18 lines
350 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
class LevelSource;
|
|
|
|
class SwampBiome : public Biome
|
|
{
|
|
// 4J Stu - No idea why this is protected in Java
|
|
//protected:
|
|
public:
|
|
SwampBiome(int id);
|
|
|
|
public:
|
|
virtual Feature *getTreeFeature(Random *random);
|
|
|
|
// 4J Stu - Not using these any more
|
|
//virtual int getGrassColor();
|
|
//virtual int getFolageColor();
|
|
}; |