Test.cs 236 B

1234567891011121314
  1. using QFramework;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public class Test : MonoBehaviour
  6. {
  7. void Start()
  8. {
  9. ResKit.Init();
  10. UIKit.OpenPanel<ToolLibraryForm>();
  11. }
  12. }