mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-27 03:44:54 +00:00
20 lines
495 B
C#
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);
|
|||
|
}
|
|||
|
}
|