16 lines
335 B
C
16 lines
335 B
C
#ifndef MOUSETYPES_H
|
|
#define MOUSETYPES_H
|
|
|
|
#include "BasicTypes.h"
|
|
|
|
// type to hold mouse button identifier
|
|
typedef UInt8 ButtonID;
|
|
|
|
// mouse button identifiers
|
|
static const ButtonID kButtonNone = 0;
|
|
static const ButtonID kButtonLeft = 1;
|
|
static const ButtonID kButtonMiddle = 2;
|
|
static const ButtonID kButtonRight = 3;
|
|
|
|
#endif
|