mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-27 21:13:00 +00:00
9 lines
155 B
C++
9 lines
155 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class TaigaBiome : public Biome {
|
|
public:
|
|
TaigaBiome(int id);
|
|
|
|
virtual Feature* getTreeFeature(Random* random);
|
|
}; |