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.
32 lines
546 B
32 lines
546 B
//========= Copyright (c) 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
|
|
|