Files
GabsPuNs-Project_Zenith_Main/Minecraft.World/HellBiome.h
2026-05-14 19:16:33 -04:00

13 lines
265 B
C++

#pragma once
#include "Biome.h"
class HellBiome : public Biome
{
public:
HellBiome(int id);
//TU25
virtual Vec3 *getFogColor(float td, float a) const;
virtual int getSkyColor(float temp);
virtual bool isNatural();
virtual bool isFoggy();
};