mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-05-27 21:34:39 +00:00
16 lines
298 B
C++
16 lines
298 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class Level;
|
|
class Random;
|
|
|
|
class DoublePlantFeature : public Feature
|
|
{
|
|
private:
|
|
int m_plantType;
|
|
|
|
public:
|
|
DoublePlantFeature(bool doUpdate = false);
|
|
void setPlantType(int plantType);
|
|
bool place(Level* level, Random* rand, int x, int y, int z);
|
|
}; |