// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.Generic; namespace Microsoft.MixedReality.Toolkit.Input.Editor { /// /// Used to aid in layout of Controller Input Actions. /// [Serializable] public class ControllerInputActionOptions { public List Controllers; } }