mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-08 23:42:58 +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);
|
|
}; |