mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-09 03:22:54 +00:00
21 lines
480 B
C++
21 lines
480 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class OceanBiome : public Biome
|
|
{
|
|
public:
|
|
OceanBiome(int id) : Biome(id)
|
|
{
|
|
friendlies.clear();
|
|
friendlies_chicken.clear(); // 4J added since chicken now separated from main friendlies
|
|
friendlies_wolf.clear(); // 4J added since wolf now separated from main friendlies
|
|
topMaterial = Tile::gravel_Id; // surfaceblock
|
|
material = Tile::gravel_Id;
|
|
}
|
|
int OceanBiome::getTemperatureCategory() const override
|
|
{
|
|
return 0;
|
|
}
|
|
};
|