mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-19 05:42:53 +00:00
10 lines
184 B
C++
10 lines
184 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class TheEndBiome : public Biome {
|
|
public:
|
|
TheEndBiome(int id);
|
|
|
|
// 4J Stu - Don't need override
|
|
// virtual int getSkyColor(float temp);
|
|
}; |