EditorInit.cs 187 B

12345678910111213141516
  1. using System;
  2. using Base;
  3. using Model;
  4. using UnityEditor;
  5. using UnityEngine;
  6. namespace MyEditor
  7. {
  8. [InitializeOnLoad]
  9. internal class EditorInit
  10. {
  11. static EditorInit()
  12. {
  13. }
  14. }
  15. }