mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 15:33:38 +00:00
11 lines
225 B
C++
11 lines
225 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::stoneBrick_Id;
|
|
} |