2025-11-25 08:19:33 -05:00
|
|
|
|
/// ---------------------------------------------
|
|
|
|
|
|
/// Behavior Designer
|
|
|
|
|
|
/// Copyright (c) Opsive. All Rights Reserved.
|
|
|
|
|
|
/// https://www.opsive.com
|
|
|
|
|
|
/// ---------------------------------------------
|
|
|
|
|
|
namespace Opsive.BehaviorDesigner.Editor.Managers
|
|
|
|
|
|
{
|
|
|
|
|
|
using Opsive.Shared.Editor.Managers;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Draws a list of all of the available integrations.
|
|
|
|
|
|
/// </summary>
|
2026-06-27 12:52:03 -04:00
|
|
|
|
[OrderedEditorItem("Integrations", 12)]
|
2025-11-25 08:19:33 -05:00
|
|
|
|
public class IntegrationsManager : Opsive.Shared.Editor.Managers.IntegrationsManager
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override string IntegrationsURL => "https://opsive.com/asset/BehaviorDesigner/IntegrationsList.txt";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|