Add ParrelSync and netcode
This commit is contained in:
26
Assets/ParrelSync/Editor/NonCore/OtherMenuItem.cs
Normal file
26
Assets/ParrelSync/Editor/NonCore/OtherMenuItem.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user