mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-14 11:32:26 +00:00
11 lines
205 B
C++
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);
|
|
};
|