mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 05:43:38 +00:00
15 lines
373 B
C++
15 lines
373 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class SpikeFeature : public Feature {
|
|
private:
|
|
int tile;
|
|
// int m_iIndex;
|
|
|
|
public:
|
|
SpikeFeature(int tile);
|
|
virtual bool place(Level* level, Random* random, int x, int y, int z);
|
|
virtual bool placeWithIndex(Level* level, Random* random, int x, int y,
|
|
int z, int iIndex, int iRadius);
|
|
};
|