29 lines
No EOL
528 B
C++
29 lines
No EOL
528 B
C++
//========= Copyright © 1996-2001, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#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 |