// Copyright © 2018 Procedural Worlds Pty Limited. All Rights Reserved. using UnityEngine; using UnityEditor; using PWCommon5; namespace PWCommon5.Internal { public class CommonMenu : Editor { /// /// Show Discord /// [MenuItem("Window/" + PWConst.COMMON_MENU + "/Show Discord, Have a Chat...", false, 120)] public static void ShowDiscord() { Application.OpenURL(PWConst.DISCORD_LINK); } /// /// Show PW assets /// [MenuItem("Window/" + PWConst.COMMON_MENU + "/Show Procedural Worlds Assets...", false, 121)] public static void ShowAssetStore() { Application.OpenURL(PWConst.ASSETS_LINK); } } }