the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2class BufferedImage;
3class MemTextureProcessor;
4using namespace std;
5
6class MemTexture {
7public:
8 BufferedImage *loadedImage;
9 int count;
10 int id;
11 bool isLoaded;
12 int ticksSinceLastUse;
13 static const int UNUSED_TICKS_TO_FREE = 20;
14
15 MemTexture(const wstring& _name, PBYTE pbData, DWORD dwBytes, MemTextureProcessor *processor);
16 ~MemTexture();
17};