1#include "stdafx.h" 2#include "SimpleIcon.h" 3 4SimpleIcon::SimpleIcon(const wstring &name, const wstring &filename, float U0, float V0, float U1, float V1) : StitchedTexture(name, filename) 5{ 6 u0 = U0; 7 u1 = U1; 8 v0 = V0; 9 v1 = V1; 10}