mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 05:53:38 +00:00
8 lines
158 B
C++
8 lines
158 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class PineFeature : public Feature {
|
|
public:
|
|
virtual bool place(Level* level, Random* random, int x, int y, int z);
|
|
};
|