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