diff options
Diffstat (limited to 'Minecraft.Client/SimpleIcon.h')
| -rw-r--r-- | Minecraft.Client/SimpleIcon.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Minecraft.Client/SimpleIcon.h b/Minecraft.Client/SimpleIcon.h new file mode 100644 index 00000000..93aec62c --- /dev/null +++ b/Minecraft.Client/SimpleIcon.h @@ -0,0 +1,11 @@ +#pragma once +using namespace std; + +#include "StitchedTexture.h" + +// 4J Added this class to store the uv data that we have pre-calculated and loaded from a file +class SimpleIcon : public StitchedTexture +{ +public: + SimpleIcon(const wstring &name, float u0, float v0, float u1, float v1); +};
\ No newline at end of file |
