mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-30 22:54:35 +00:00
13 lines
265 B
C++
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();
|
|
}; |