11 lines
194 B
C++
11 lines
194 B
C++
#pragma once
|
|
#include "instance.h"
|
|
|
|
class ImageButtonInstance :
|
|
public Instance
|
|
{
|
|
public:
|
|
ImageButtonInstance(G3D::TextureRef,G3D::TextureRef,G3D::TextureRef);
|
|
~ImageButtonInstance(void);
|
|
};
|