ChangeSubtitleText.cs 379 B

12345678910111213141516171819202122232425
  1. using QFramework;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UniRx;
  5. using UnityEngine;
  6. public class ChangeSubtitleText : MonoBehaviour
  7. {
  8. // Start is called before the first frame update
  9. void Start()
  10. {
  11. }
  12. // Update is called once per frame
  13. void Update()
  14. {
  15. }
  16. public void ChangeText()
  17. {
  18. }
  19. }