mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-27 07:13:01 +00:00
10 lines
132 B
C++
10 lines
132 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class PlainsBiome : public Biome {
|
|
friend class Biome;
|
|
|
|
protected:
|
|
PlainsBiome(int id);
|
|
}; |