Files
BluTac10-Xbox_Neo/Minecraft.World/FlowerFeature.h
2026-03-23 03:44:02 +01:00

12 lines
249 B
C++

#pragma once
#include "Feature.h"
class Level;
class FlowerFeature : public Feature
{
private:
int tile;
int variant;
public:
FlowerFeature(int tile, int variant = 0);
bool place(Level* level, Random* random, int x, int y, int z);
};