You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/3rd/StompyRobot/SRDebugger/Scripts/Services/IPinnedOptionsService.cs

20 lines
495 B
C#

using UnityEngine;
namespace SRDebugger.Services
{
using System;
using Internal;
public interface IPinnedUIService
{
event Action<OptionDefinition, bool> OptionPinStateChanged;
event Action<RectTransform> OptionsCanvasCreated;
bool IsProfilerPinned { get; set; }
void Pin(OptionDefinition option, int order = -1);
void Unpin(OptionDefinition option);
void UnpinAll();
bool HasPinned(OptionDefinition option);
}
}