the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "StitchedTexture.h"
3
4class ClockTexture : public StitchedTexture
5{
6private:
7 double rot, rota;
8 int m_iPad;
9 ClockTexture* m_dataTexture;
10
11public:
12 ClockTexture();
13 ClockTexture(int iPad, ClockTexture *dataTexture);
14 void cycleFrames();
15
16 virtual int getSourceWidth() const;
17 virtual int getSourceHeight() const;
18 virtual int getFrames();
19 virtual void freeFrameTextures(); // 4J added
20 virtual bool hasOwnData(); // 4J Added
21};