mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 15:21:54 +00:00
4f13237895
Change CRLF to LF in repo.
21 lines
416 B
C++
21 lines
416 B
C++
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef BITMAPPNG_H
|
|
#define BITMAPPNG_H
|
|
|
|
#include "VGUI_Bitmap.h"
|
|
|
|
class VGUIAPI BitmapPNG : public vgui::Bitmap
|
|
{
|
|
public:
|
|
BitmapPNG(int width, int height, uchar* data);
|
|
virtual ~BitmapPNG(void);
|
|
private:
|
|
};
|
|
|
|
#endif
|