mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
12 lines
221 B
C#
12 lines
221 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Robust.Client.UserInterface
|
|
{
|
|
[NotContentImplementable]
|
|
public interface IClipboardManager
|
|
{
|
|
Task<string> GetText();
|
|
void SetText(string text);
|
|
}
|
|
}
|