mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 15:03:36 +00:00
8 lines
228 B
C++
8 lines
228 B
C++
#include "../Platform/stdafx.h"
|
|
#include "StoneTile.h"
|
|
|
|
StoneTile::StoneTile(int id) : Tile(id, Material::stone) {}
|
|
|
|
int StoneTile::getResource(int data, Random* random, int playerBonusLevel) {
|
|
return Tile::cobblestone_Id;
|
|
} |