mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-24 06:27:28 +00:00
8 lines
164 B
C++
8 lines
164 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class RainforestBiome : public Biome {
|
|
public:
|
|
RainforestBiome(int id);
|
|
virtual Feature* getTreeFeature(Random* random);
|
|
}; |