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

namespace zSpace.Core.Sdk
{
    /// <summary>
    /// Defines the types of 6-DOF trackable targets supported.
    /// </summary>
    public enum ZTargetType
    {
        /// <summary>
        /// The target corresponding to the user's head.
        /// </summary>
        Head = 0,

        /// <summary>
        /// The target corresponding to the user's primary hand.
        /// </summary>
        Primary = 1,
    }
}
