the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 18 lines 361 B view raw
1#pragma once 2 3#include "Tile_SPU.h" 4 5class TntTile_SPU : public Tile_SPU 6{ 7public: 8 static const int EXPLODE_BIT = 1; 9 TntTile_SPU(int id) : Tile_SPU(id) {} 10 11 Icon_SPU *getTexture(int face, int data) 12 { 13 if (face == Facing::DOWN) return &ms_pTileData->tntTile_iconBottom; 14 if (face == Facing::UP) return &ms_pTileData->tntTile_iconTop; 15 return icon(); 16 17 } 18};