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

11 lines
205 B
C++

#pragma once
#include "Biome.h"
#include "minecraft/world/level/biome/Biome.h"
class ForestBiome : public Biome {
public:
ForestBiome(int id);
virtual Feature* getTreeFeature(Random* random);
};