mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 09:34:42 +00:00
17 lines
407 B
C++
17 lines
407 B
C++
#pragma once
|
|
#include "SkyrootLogTile.h"
|
|
|
|
class Player;
|
|
|
|
class GoldenOakLogTile : public SkyrootLogTile
|
|
{
|
|
friend class Tile;
|
|
|
|
protected:
|
|
GoldenOakLogTile(int id, const wstring &sideTexture, const wstring &topTexture);
|
|
|
|
public:
|
|
virtual int getResource(int data, Random *random, int playerBonusLevel);
|
|
virtual void playerDestroy(Level *level, shared_ptr<Player> player, int x, int y, int z, int data);
|
|
};
|