Files
MinecraftCommunityEdition-c…/Minecraft.World/AetherBiome.h
Bonnie 00a10d61fd fix wrong color aether sky/fog in release
genuinely how did this work fine in debug lol
2026-03-03 16:58:17 -06:00

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);
};