ContentUI.cs 189 B

12345678910111213
  1. using UnityEngine;
  2. namespace VRPlatform
  3. {
  4. public class ContentUI : MonoBehaviour
  5. {
  6. public void Refresh()
  7. {
  8. // Do something
  9. }
  10. }
  11. }