17 lines
423 B
C#
17 lines
423 B
C#
// Copyright (c) Microsoft Corporation.
|
||
// Licensed under the MIT License.
|
||
|
||
using System;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Microsoft.MixedReality.Toolkit.Input.Editor
|
||
{
|
||
/// <summary>
|
||
/// Used to aid in layout of Controller Input Actions.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class ControllerInputActionOptions
|
||
{
|
||
public List<ControllerInputActionOption> Controllers;
|
||
}
|
||
} |