Files
2026-03-08 10:09:54 +01:00

8 lines
104 B
C++

#pragma once
#include "Biome.h"
class IceBiome : public Biome
{
public:
IceBiome(int id);
};