NS/main/source/ui/bitmappng.h
Ari Timonen 4f13237895 Update line endings
Change CRLF to LF in repo.
2018-04-22 18:55:55 +03:00

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