mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-05-22 10:55:34 +00:00
12 lines
249 B
C++
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);
|
|
}; |