mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-06-03 16:44:50 +00:00
10 lines
223 B
C++
10 lines
223 B
C++
#pragma once
|
|
#include "MinecartRenderer.h"
|
|
|
|
class Minecart;
|
|
|
|
class TntMinecartRenderer : public MinecartRenderer
|
|
{
|
|
protected:
|
|
void renderMinecartContents(shared_ptr<Minecart> cart, float a, Tile *tile, int tileData);
|
|
}; |