using Coral.Managed.Interop; using System; using System.Collections.Generic; using System.Drawing; using System.Numerics; using System.Runtime.InteropServices; namespace Nuake.Net { /// /// This is the core Nuake.Net API. /// All internal call should happen in this file. /// public class Engine { internal static unsafe delegate* LoggerLogIcall; public Engine() { } /// /// Prints a message to the console log /// /// message to be printed public static void Log(string input) { unsafe { LoggerLogIcall(input); } } } }