You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
445 B
23 lines
445 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
/*
|
||
|
|
||
|
The basic datatypes
|
||
|
|
||
|
*/
|
||
|
|
||
|
typedef signed char int8;
|
||
|
typedef unsigned char uint8;
|
||
|
typedef signed short int16;
|
||
|
typedef unsigned short uint16;
|
||
|
typedef signed int int32;
|
||
|
typedef unsigned int uint32;
|
||
|
typedef float float32;
|
||
|
typedef double float64;
|
||
|
|