Friday, September 20, 2024 12:08:44 AM
> settings

Customize


Authenticate

> Entry.cs
/*
 * Bryan
 * Exile Server Manager
 */
using Maca134.Arma.DllExport;
using System;

namespace esm
{
    /// <summary>
    /// The entry for Arma, the ArmaDllExport will convert this into the proper header
    /// </summary>
    public partial class ESM
    {
        [ArmaDllExport]
        public static string Invoke(string function, int outputSize)
        {
            // COnvert the string into a command
            ArmACommand functionCommand = Converter.Deserialize(function);

            // Pass it into our parse function and return the string
            return ParseFunction(functionCommand);
        }
    }
}
All opinions represented herein are my own
- © 2024 itsthedevman
- build 3c15a1b