mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-09-01 23:19:18 +00:00
upload "kind" alien swarm
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
#ifndef _INCLUDED_ASW_SCALABLE_TEXT_H
|
||||
#define _INCLUDED_ASW_SCALABLE_TEXT_H
|
||||
#ifdef _WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#define NUM_SCALABLE_LETTERS 26
|
||||
|
||||
class CASW_Scalable_Text
|
||||
{
|
||||
public:
|
||||
CASW_Scalable_Text();
|
||||
virtual ~CASW_Scalable_Text();
|
||||
|
||||
int DrawSetLetterTexture( char ch, bool bGlow );
|
||||
|
||||
bool m_bLetterSupported[ NUM_SCALABLE_LETTERS ];
|
||||
int m_nLetterTextureID[ NUM_SCALABLE_LETTERS ];
|
||||
const char *m_pszMaterialFilename[ NUM_SCALABLE_LETTERS ];
|
||||
|
||||
int m_nGlowLetterTextureID[ NUM_SCALABLE_LETTERS ];
|
||||
const char *m_pszGlowMaterialFilename[ NUM_SCALABLE_LETTERS ];
|
||||
};
|
||||
|
||||
CASW_Scalable_Text* ASWScalableText();
|
||||
|
||||
#endif // _INCLUDED_ASW_SCALABLE_TEXT_H
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user