mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-27 20:33:51 +00:00
7 lines
151 B
C
7 lines
151 B
C
|
|
#pragma once
|
||
|
|
#include "Feature.h"
|
||
|
|
|
||
|
|
class WaterlilyFeature : public Feature
|
||
|
|
{
|
||
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
||
|
|
};
|