mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
27 lines
627 B
C#
27 lines
627 B
C#
using System;
|
|
using Robust.Client.Interfaces.UserInterface;
|
|
|
|
namespace Robust.Client.UserInterface
|
|
{
|
|
internal sealed class ClipboardManagerUnsupported : IClipboardManagerInternal
|
|
{
|
|
public bool Available => false;
|
|
public string NotAvailableReason => "Sorry, the clipboard is not supported on your platform.";
|
|
|
|
public string GetText()
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public void SetText(string text)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public void Initialize()
|
|
{
|
|
// Nothing.
|
|
}
|
|
}
|
|
}
|