blob: 2bcdb8ac15f41eb7a3fa34918b066d1912e4a96a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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();
};
|