Car/Assets/StompyRobot/SRDebugger/Scripts/Services/IDebugTriggerService.cs

10 lines
221 B
C#
Raw Normal View History

2025-01-02 11:32:58 +08:00
namespace SRDebugger.Services
{
public interface IDebugTriggerService
{
bool IsEnabled { get; set; }
bool ShowErrorNotification { get; set; }
PinAlignment Position { get; set; }
}
}