Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 429 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 429 Bytes

Maca134.Arma.DllExport - Download

Simplify C# extensions for ARMA

PM> Install-Package Maca134.Arma.DllExport

Demo

public class SomeClass
{
    [ArmaDllExport]
    public static string Invoke(string input, int size)
    {
        return input;
    }
}