Files

14 lines
232 B
C
Raw Permalink Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "Feature.h"
class TallGrassFeature : public Feature
{
private:
int tile;
int type;
public:
TallGrassFeature (int tile, int type);
virtual bool place(Level *level, Random *random, int x, int y, int z);
};