Skip to content

Latest commit

 

History

History
35 lines (32 loc) · 500 Bytes

README.md

File metadata and controls

35 lines (32 loc) · 500 Bytes

Unic

The C# library for everything coding.

Installation

Just use

using Unic;

Using Unic

Message boxes

You can show your user a message mox with

using Unic.Interaction;

class YourClass
{
  public static void Main()
  {
    InteractiveMessages.ShowMessageBox("title", "message");
  }
}

Windows

You can open a window with:

using Unic.Xero;

class YourClass
{
  public static void Main()
  {
    XeroRenderer.OpenWindow("Test Window", 500, 500);
  }
}