mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 19:53:36 +00:00
12 lines
345 B
C++
12 lines
345 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
class Random;
|
|
|
|
class Glowstonetile : public Tile {
|
|
public:
|
|
Glowstonetile(int id, Material* material);
|
|
virtual int getResourceCountForLootBonus(int bonusLevel, Random* random);
|
|
virtual int getResourceCount(Random* random);
|
|
virtual int getResource(int data, Random* random, int playerBonusLevel);
|
|
}; |