Added bare bones TextButton rendering

(Yes, it took that many lines of code)
This commit is contained in:
andreja6
2018-04-19 17:18:26 -07:00
parent acbe509c05
commit 3e4c128347
7 changed files with 151 additions and 10 deletions

10
ImageButtonInstance.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "instance.h"
class ImageButtonInstance :
public Instance
{
public:
ImageButtonInstance(G3D::TextureRef,G3D::TextureRef,G3D::TextureRef);
~ImageButtonInstance(void);
};