SteamVR_ActionDirections.cs 305 B

12345678910111213
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. namespace Valve.VR
  3. {
  4. /// <summary>
  5. /// The direction the the action. In actions get input, Out actions send input.
  6. /// </summary>
  7. public enum SteamVR_ActionDirections
  8. {
  9. In,
  10. Out,
  11. }
  12. }