mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-23 04:18:13 +05:00
17 lines
270 B
C++
17 lines
270 B
C++
#pragma once
|
|
|
|
#include "Tile.h"
|
|
|
|
class SpringTile : public Tile
|
|
{
|
|
private:
|
|
int liquidTileId;
|
|
|
|
protected:
|
|
SpringTile(int id, int liquidTileId);
|
|
|
|
public:
|
|
void onPlace(Level *level, int x, int y, int z);
|
|
|
|
void tick(Level *level, int x, int y, int z, Random *random);
|
|
}; |