blob: bc2186c992c59e991016c04d048bea0c8624b0bc (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | /** 
 * @file llviewerjoystick.h
 * @brief Viewer joystick functionality.
 *
 * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
 * $License$
 */
#ifndef LL_LLVIEWERJOYSTICK_H
#define LL_LLVIEWERJOYSTICK_H
class LLViewerJoystick
{
public:
	static BOOL sOverrideCamera;
	static void scanJoystick();
	static void updateCamera(BOOL reset = FALSE);
};
#endif
 |