mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 23:31:40 +00:00
4f13237895
Change CRLF to LF in repo.
20 lines
482 B
C
20 lines
482 B
C
//========= Copyright © 1996-2001, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef VGUI_LOADTGA_H
|
|
#define VGUI_LOADTGA_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
#include <VGUI_BitmapTGA.h>
|
|
|
|
vgui::BitmapTGA* vgui_LoadTGA(char const *pFilename, bool bInvertAlpha = true);
|
|
vgui::BitmapTGA* vgui_LoadTGANoInvertAlpha(char const *pFilename);
|
|
|
|
#endif // VGUI_LOADTGA_H
|