23 lines
557 B
C#
23 lines
557 B
C#
|
using HybridCLR.Editor.Installer;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UnityEditor;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace HybridCLR.Editor.Commands
|
|||
|
{
|
|||
|
public static class InstallerCommand
|
|||
|
{
|
|||
|
|
|||
|
[MenuItem("HybridCLR/Installer...", false, 0)]
|
|||
|
private static void Open()
|
|||
|
{
|
|||
|
InstallerWindow window = EditorWindow.GetWindow<InstallerWindow>("HybridCLR Installer", true);
|
|||
|
window.minSize = new Vector2(800f, 500f);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|