mirror of
https://github.com/MCLCE/MinecraftConsoles.git
synced 2026-05-21 23:54:30 +00:00
12 lines
198 B
C++
12 lines
198 B
C++
#pragma once
|
|
#include "HeavyTile.h"
|
|
|
|
class Random;
|
|
|
|
class GravelTile : public HeavyTile
|
|
{
|
|
public:
|
|
GravelTile(int type);
|
|
virtual int getResource(int data, Random *random, int playerBonusLevel);
|
|
};
|