mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-15 10:33:15 +00:00
10 lines
158 B
C++
10 lines
158 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class ForestBiome : public Biome {
|
|
public:
|
|
ForestBiome(int id);
|
|
|
|
virtual Feature* getTreeFeature(Random* random);
|
|
};
|