mirror of
https://github.com/ENSL/NS.git
synced 2024-11-26 14:30:54 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
32 lines
No EOL
408 B
C++
32 lines
No EOL
408 B
C++
|
|
#ifndef VGUI_IMAGEPANEL_H
|
|
#define VGUI_IMAGEPANEL_H
|
|
|
|
#include<VGUI.h>
|
|
#include<VGUI_Panel.h>
|
|
|
|
namespace vgui
|
|
{
|
|
|
|
class Image;
|
|
|
|
class VGUIAPI ImagePanel : public Panel
|
|
{
|
|
public:
|
|
inline ImagePanel()
|
|
{
|
|
_image=null;
|
|
}
|
|
|
|
ImagePanel(Image* image);
|
|
public:
|
|
virtual void setImage(Image* image);
|
|
protected:
|
|
virtual void paintBackground();
|
|
protected:
|
|
Image* _image;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |