mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-29 00:01:03 -05:00
13 lines
236 B
C#
13 lines
236 B
C#
using System;
|
|
|
|
namespace CrossPlatformClientExe
|
|
{
|
|
public interface IInteropFunctions
|
|
{
|
|
public string TransformInit1();
|
|
public int TransformInit2();
|
|
public void CopyTextToClipboard(string text);
|
|
public void ShowForm();
|
|
}
|
|
}
|