Handle osu:// scheme links via IPC in desktop game

This commit is contained in:
Bartłomiej Dach
2022-06-20 21:21:16 +02:00
parent 92011124d1
commit 330af7ec74
3 changed files with 65 additions and 23 deletions

View File

@ -0,0 +1,15 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
namespace osu.Game.IPC
{
public class IPCTimeoutException : TimeoutException
{
public IPCTimeoutException(Type channelType)
: base($@"IPC took too long to send message via channel {channelType}")
{
}
}
}