IAssetsPanel.cs 154 B

12345678910
  1. namespace XGame.Editor.Asset
  2. {
  3. internal interface IAssetsPanel
  4. {
  5. //void Init();
  6. void DrawGUI();
  7. void Close();
  8. }
  9. }