15 lines
327 B
C#
15 lines
327 B
C#
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
|
|
namespace Unity.VisualScripting
|
|
{
|
|
public class VSProjectSettingsProvider : Editor
|
|
{
|
|
[SettingsProvider]
|
|
public static SettingsProvider CreateProjectSettingProvider()
|
|
{
|
|
return new VSProjectSettingsProviderView();
|
|
}
|
|
}
|
|
}
|