mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-25 10:21:11 -04:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
10 lines
212 B
C#
10 lines
212 B
C#
namespace CrossPlatformClientExe;
|
|
|
|
public interface IInteropFunctions
|
|
{
|
|
public string TransformInit1();
|
|
public int TransformInit2();
|
|
public void CopyTextToClipboard(string text);
|
|
public void ShowForm();
|
|
}
|