mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-13 05:51:19 +00:00
33 lines
546 B
C
33 lines
546 B
C
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
||
//
|
||
// Purpose:
|
||
//
|
||
// $NoKeywords: $
|
||
//=============================================================================
|
||
|
||
#pragma once
|
||
#if !defined( IN_DEFSH )
|
||
#define IN_DEFSH
|
||
|
||
// up / down
|
||
#define PITCH 0
|
||
// left / right
|
||
#define YAW 1
|
||
// fall over
|
||
#define ROLL 2
|
||
|
||
#ifdef _WIN32
|
||
#define HSPRITE HSPRITE_win32
|
||
#include <windows.h>
|
||
#undef HSPRITE
|
||
#else
|
||
typedef struct point_s
|
||
{
|
||
int x;
|
||
int y;
|
||
} POINT;
|
||
#define GetCursorPos(x)
|
||
#define SetCursorPos(x,y)
|
||
#endif
|
||
#endif
|