mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-29 05:13:38 +00:00
25 lines
504 B
C++
25 lines
504 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
#include "Material.h"
|
|
|
|
class ChunkRebuildData;
|
|
|
|
class ClothTile : public Tile {
|
|
friend class ChunkRebuildData;
|
|
|
|
private:
|
|
Icon** icons;
|
|
|
|
public:
|
|
ClothTile();
|
|
virtual Icon* getTexture(int face, int data);
|
|
|
|
protected:
|
|
virtual int getSpawnResourcesAuxValue(int data);
|
|
|
|
public:
|
|
static int getTileDataForItemAuxValue(int auxValue);
|
|
static int getItemAuxValueForTileData(int data);
|
|
//@Override
|
|
void registerIcons(IconRegister* iconRegister);
|
|
}; |