blob: 47a0c3bc5821975a15c14aefcfec9ec6c395d887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "Feature.h"
class Level;
class FlowerFeature : public Feature
{
private:
int tile;
public:
FlowerFeature (int tile);
bool place(Level *level, Random *random, int x, int y, int z);
};
|