(ded4a3e0a) v0.9.0.7
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
//TODO: maybe make this compile even if SDL isn't available
|
||||
|
||||
namespace Microsoft.Xna.Framework
|
||||
{
|
||||
public static class Clipboard
|
||||
{
|
||||
public static string GetText()
|
||||
{
|
||||
return Sdl.GetClipboardText();
|
||||
}
|
||||
|
||||
public static void SetText(string text)
|
||||
{
|
||||
Sdl.SetClipboardText(text);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user