26 lines
698 B
C#
26 lines
698 B
C#
|
namespace ParrelSync.NonCore
|
|||
|
{
|
|||
|
using UnityEditor;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class OtherMenuItem
|
|||
|
{
|
|||
|
[MenuItem("ParrelSync/GitHub/View this project on GitHub", priority = 10)]
|
|||
|
private static void OpenGitHub()
|
|||
|
{
|
|||
|
Application.OpenURL(ExternalLinks.GitHubHome);
|
|||
|
}
|
|||
|
|
|||
|
[MenuItem("ParrelSync/GitHub/View FAQ", priority = 11)]
|
|||
|
private static void OpenFAQ()
|
|||
|
{
|
|||
|
Application.OpenURL(ExternalLinks.FAQ);
|
|||
|
}
|
|||
|
|
|||
|
[MenuItem("ParrelSync/GitHub/View Issues", priority = 12)]
|
|||
|
private static void OpenGitHubIssues()
|
|||
|
{
|
|||
|
Application.OpenURL(ExternalLinks.GitHubIssue);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|