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