Scene picker: Added option to add groups of scenes to open

This commit is contained in:
Anders Ejlersen 2023-08-31 17:41:44 +02:00
parent 41604b98e7
commit a86f76904e
28 changed files with 1052 additions and 225 deletions

View file

@ -0,0 +1,12 @@
namespace Module.NavigationTool.Editor.Toolbar
{
public interface IToolbarProjectSettings
{
string Title { get; }
bool IsSettingsDirty { get; }
void Initialize(ToolbarProjectSettings projectSettings);
void Draw();
void SetSettingsValue();
}
}