4jcraft/targets/minecraft/world/level/biome/SwampBiome.h
2026-04-01 13:27:58 -05:00

19 lines
417 B
C++

#pragma once
#include "Biome.h"
#include "minecraft/world/level/biome/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();
};