mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
9 lines
211 B
C++
9 lines
211 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
#include "minecraft/world/level/biome/Biome.h"
|
|
|
|
class RainforestBiome : public Biome {
|
|
public:
|
|
RainforestBiome(int id);
|
|
virtual Feature* getTreeFeature(Random* random);
|
|
}; |