mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 03:03:37 +00:00
11 lines
206 B
C++
11 lines
206 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class Level;
|
|
|
|
class BirchFeature : public Feature {
|
|
public:
|
|
BirchFeature(bool doUpdate);
|
|
virtual bool place(Level* level, Random* random, int x, int y, int z);
|
|
};
|