mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 01:24:32 +00:00
15 lines
302 B
C++
15 lines
302 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class AetherBiome : public Biome
|
|
{
|
|
public:
|
|
AetherBiome(int id);
|
|
|
|
virtual Feature *getTreeFeature(Random *random);
|
|
virtual Feature *getGrassFeature(Random *random);
|
|
virtual int getGrassColor();
|
|
virtual int getFolageColor();
|
|
virtual int getSkyColor(float temp);
|
|
};
|