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

12 lines
219 B
C++

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