21 lines
387 B
C
21 lines
387 B
C
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef FONTABC_H
|
|
#define FONTABC_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
int abcA, abcB, abcC;
|
|
int total;
|
|
} FONTABC;
|
|
|
|
#endif // FONTABC_H
|