AudioPluginOther.cs 267 B

123456789101112131415
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace SC.XR.Unity.Module_DetectorSystem
  5. {
  6. public class AudioPluginOther : AudioPlugin
  7. {
  8. public static AudioPluginOther Create()
  9. {
  10. return new AudioPluginOther();
  11. }
  12. }
  13. }