mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-19 10:37:12 +00:00
11 lines
231 B
C++
11 lines
231 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
#include "minecraft/world/level/biome/Biome.h"
|
|
|
|
class TheEndBiome : public Biome {
|
|
public:
|
|
TheEndBiome(int id);
|
|
|
|
// 4J Stu - Don't need override
|
|
// virtual int getSkyColor(float temp);
|
|
}; |