﻿////////////////////////////////////////////////////////////////////////////////
//
//  Copyright (C) 2007-2020 zSpace, Inc.  All Rights Reserved.
//
////////////////////////////////////////////////////////////////////////////////

namespace zSpace.Core.Sdk
{
    /// <summary>
    /// Defines the mouse buttons available when mapping a target's buttons to
    /// corresponding mouse buttons.
    /// </summary>
    public enum ZMouseButton
    {
        Unknown = -1,
        Left = 0,
        Right = 1,
        Center = 2,
    }
}