mirror of
https://git.neolegacy.dev/neoStudiosLCE/neoLegacy.git
synced 2026-07-16 02:50:39 +00:00
10 lines
214 B
C++
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; }
|
|
}; |