1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 09:38:56 +08:00
hl2sdk/public/client_textmessage.h
2013-06-26 15:22:04 -07:00

34 lines
806 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef CLIENT_TEXTMESSAGE_H
#define CLIENT_TEXTMESSAGE_H
#ifdef _WIN32
#pragma once
#endif
struct client_textmessage_t
{
int effect;
byte r1, g1, b1, a1; // 2 colors for effects
byte r2, g2, b2, a2;
float x;
float y;
float fadein;
float fadeout;
float holdtime;
float fxtime;
const char *pVGuiSchemeFontName; // If null, use default font for messages
const char *pName;
const char *pMessage;
bool bRoundedRectBackdropBox;
float flBoxSize; // as a function of font height
byte boxcolor[4];
char const *pClearMessage; // message to clear
};
#endif // CLIENT_TEXTMESSAGE_H