MTI860_VR_Multi_Controller/Assets/SteamVR/Input/SteamVR_ActionDirections.cs
boB 21a16e637f Revert "retire Steam VR"
This reverts commit f627f1e1c3e7c010a70ba1eacfb7b3aab85ffd43.
2021-11-11 16:51:51 -05:00

13 lines
305 B
C#

//======= Copyright (c) Valve Corporation, All rights reserved. ===============
namespace Valve.VR
{
/// <summary>
/// The direction the the action. In actions get input, Out actions send input.
/// </summary>
public enum SteamVR_ActionDirections
{
In,
Out,
}
}