13 lines
279 B
C#
13 lines
279 B
C#
using UnityEditor;
|
|
|
|
namespace Fantasy
|
|
{
|
|
public class FantasySettings
|
|
{
|
|
[MenuItem("Fantasy/Fantasy Settings")]
|
|
public static void OpenFantasySettings()
|
|
{
|
|
SettingsService.OpenProjectSettings("Project/Fantasy Settings");
|
|
}
|
|
}
|
|
} |