13 lines
No EOL
305 B
C#
13 lines
No EOL
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,
|
|
}
|
|
} |