mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Use GLFW instead of OpenTK windows * Seems to work pretty well now. * Fix stackalloc issue on Framework. * Add GLFW project to sln. * Fix package downgrade. * Fix SLN more. * Please work. * Fix C# version error.
9 lines
165 B
C#
9 lines
165 B
C#
namespace Robust.Client.Interfaces.UserInterface
|
|
{
|
|
public interface IClipboardManager
|
|
{
|
|
string GetText();
|
|
void SetText(string text);
|
|
}
|
|
}
|