mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 09:52:23 +00:00
11 lines
271 B
C#
11 lines
271 B
C#
|
namespace FSO.Common.Rendering.Framework.IO
|
|||
|
{
|
|||
|
public class ClipboardHandler
|
|||
|
{
|
|||
|
public static ClipboardHandler Default = new ClipboardHandler();
|
|||
|
|
|||
|
public virtual string Get() { return ""; }
|
|||
|
public virtual void Set(string text) { }
|
|||
|
}
|
|||
|
}
|