Files
neoLegacy/Minecraft.World/StoneBeachBiome.h
2026-07-02 21:09:39 -04:00

10 lines
214 B
C++

#pragma once
#include "Biome.h"
class StoneBeachBiome : public Biome
{
public:
StoneBeachBiome(int id);
virtual bool isFoggy() const { return false; }
virtual bool isNatural() const { return true; }
};