diff options
Diffstat (limited to 'utils/xbox/makephx/util.h')
| -rw-r--r-- | utils/xbox/makephx/util.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/xbox/makephx/util.h b/utils/xbox/makephx/util.h new file mode 100644 index 0000000..8d389a3 --- /dev/null +++ b/utils/xbox/makephx/util.h @@ -0,0 +1,16 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= + +#ifndef UTIL_H +#define UTIL_H +#ifdef _WIN32 +#pragma once +#endif + +extern void UTIL_StringToFloatArray( float *pVector, int count, const char *pString ); +extern void UTIL_StringToVector( float *pVector, const char *pString ); + +#endif // UTIL_H |