mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 01:11:43 +00:00
18 lines
450 B
C
18 lines
450 B
C
//========= Copyright © 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
|