mirror of
https://github.com/ENSL/NS.git
synced 2024-11-27 23:02:16 +00:00
23 lines
325 B
C
23 lines
325 B
C
|
|
||
|
#ifndef VGUI_BITMAPTGA_H
|
||
|
#define VGUI_BITMAPTGA_H
|
||
|
|
||
|
#include<VGUI_Bitmap.h>
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
|
||
|
class Panel;
|
||
|
class InputStream;
|
||
|
|
||
|
class VGUIAPI BitmapTGA : public Bitmap
|
||
|
{
|
||
|
public:
|
||
|
BitmapTGA(InputStream* is,bool invertAlpha);
|
||
|
private:
|
||
|
virtual bool loadTGA(InputStream* is,bool invertAlpha);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|