Falco Engine 3.9.0.1 (beta)
Debug.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.CompilerServices;
3using System.Runtime.InteropServices;
4
5
6namespace FalcoEngine
7{
8 public class Debug
9 {
14 public static void Log(string message)
15 {
16 INTERNAL_log(message);
17 }
18
19 [MethodImpl(MethodImplOptions.InternalCall)]
20 private static extern void INTERNAL_log(string message);
21 }
22}
static void Log(string message)
Print message to the editor's console
Definition: Debug.cs:14