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);
|
|
};
|