> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GameInputMouseButtons

> GameInputMouseButtons

# GameInputMouseButtons

마우스 버튼을 열거합니다.

<a id="syntaxSection" />

## 구문

```cpp theme={null}
enum GameInputMouseButtons
{
    GameInputMouseNone           = 0x00000000,
    GameInputMouseLeftButton     = 0x00000001,
    GameInputMouseRightButton    = 0x00000002,
    GameInputMouseMiddleButton   = 0x00000004,
    GameInputMouseButton4        = 0x00000008,
    GameInputMouseButton5        = 0x00000010,
    GameInputMouseWheelTiltLeft  = 0x00000020,
    GameInputMouseWheelTiltRight = 0x00000040
};
```

<a id="constantsSection" />

## 상수

| 상수                           | 설명                      |
| ---------------------------- | ----------------------- |
| GameInputMouseNone           | 마우스 버튼이 눌리지 않았음을 나타냅니다. |
| GameInputMouseLeftButton     | 왼쪽 마우스 버튼을 나타냅니다.       |
| GameInputMouseRightButton    | 오른쪽 마우스 버튼을 나타냅니다.      |
| GameInputMouseMiddleButton   | 가운데 마우스 버튼을 나타냅니다.      |
| GameInputMouseButton4        | 네 번째 마우스 버튼을 나타냅니다.     |
| GameInputMouseButton5        | 다섯 번째 마우스 버튼을 나타냅니다.    |
| GameInputMouseWheelTiltLeft  | 스크롤 휠의 왼쪽 기울임을 나타냅니다.   |
| GameInputMouseWheelTiltRight | 스크롤 휠의 오른쪽 기울임을 나타냅니다.  |

<a id="remarksSection" />

## 설명

이 플래그 값은 [GameInputMouseInfo](/reference/input/gameinput/structs/gameinputmouseinfo) 구조체(사용 가능한 마우스 버튼을 확인하기 위해)와 [GameInputMouseState](/reference/input/gameinput/structs/gameinputmousestate) 구조체(장치 판독값을 가져오기 위해)에서 사용됩니다.

장치 속성 액세스에 대한 자세한 내용은 [GameInput 장치](/build/core-features/common/input/overviews/input-devices)를 참조하세요. 장치 판독값을 가져오는 방법에 대한 자세한 내용은 [GameInput 판독값](/build/core-features/common/input/overviews/input-readings)을 참조하세요.

<a id="requirementsSection" />

## 요구 사항

**헤더:** GameInput.h

**지원되는 플랫폼:** Windows, XBOX One 계열 콘솔 및 XBOX Series 콘솔

<a id="seealsoSection" />

## 함께 보기

[GameInput 개요](/build/core-features/common/input/overviews/input-overview)\
[GameInput](/reference/input/gameinput/gameinput_members)

## 버전 기록

| 버전     | 변경 사항    |
| ------ | -------- |
| **v0** | 도입되었습니다. |


## Related topics

- [GameInput](/ko/reference/input/gameinput/gameinput_members.md)
- [IGameInputReading::GetMouseState](/ko/reference/input/gameinput/interfaces/igameinputreading/methods/igameinputreading_getmousestate.md)
- [GameInputGamepadButtons](/ko/reference/input/gameinput/enums/gameinputgamepadbuttons.md)
- [GameInputSystemButtonCallback](/ko/reference/input/gameinput/functions/gameinputsystembuttoncallback.md)
- [GameInputFlightStickButtons](/ko/reference/input/gameinput/enums/gameinputflightstickbuttons.md)
