mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 15:21:54 +00:00
19 lines
468 B
C
19 lines
468 B
C
|
//========= Copyright <20> 1996-2001, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#ifndef LOADPNG_H
|
|||
|
#define LOADPNG_H
|
|||
|
|
|||
|
#include "bitmappng.h"
|
|||
|
#include "vgui_inputstream.h"
|
|||
|
|
|||
|
BitmapPNG* LoadPNG(char const *pFilename);
|
|||
|
BitmapPNG* LoadPNG(uchar* data, int length);
|
|||
|
BitmapPNG* LoadPNG(vgui::InputStream& stream);
|
|||
|
|
|||
|
#endif // VGUI_LOADTGA_H
|