2021년 4학년 1학기 기업연계프로젝트2 컴퓨터소프트웨어공학과 <원광투어팀> 팀장 : 송유진 팀원 : 김나영, 이경희, 한유진
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
860 B

5 years ago
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. using UnityEngine;
  3. using System.Collections;
  4. using System;
  5. using Valve.VR;
  6. using System.Runtime.InteropServices;
  7. using System.Collections.Generic;
  8. namespace Valve.VR
  9. {
  10. [Serializable]
  11. public abstract class SteamVR_Action_Out<SourceMap, SourceElement> : SteamVR_Action<SourceMap, SourceElement>, ISteamVR_Action_Out
  12. where SourceMap : SteamVR_Action_Source_Map<SourceElement>, new()
  13. where SourceElement : SteamVR_Action_Out_Source, new()
  14. {
  15. }
  16. public abstract class SteamVR_Action_Out_Source : SteamVR_Action_Source, ISteamVR_Action_Out_Source
  17. {
  18. }
  19. public interface ISteamVR_Action_Out : ISteamVR_Action, ISteamVR_Action_Out_Source
  20. {
  21. }
  22. public interface ISteamVR_Action_Out_Source : ISteamVR_Action_Source
  23. {
  24. }
  25. }