AudioAutoTrans.cs 318 B

123456789101112131415161718192021
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace CommonAIClient.Unity.Utils
  4. {
  5. public class AudioAutoTrans : MonoBehaviour
  6. {
  7. // Use this for initialization
  8. void Start()
  9. {
  10. }
  11. // Update is called once per frame
  12. void Update()
  13. {
  14. }
  15. }
  16. }