mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-31 23:24:39 +00:00
12 lines
219 B
C++
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();
|
|
}; |