summaryrefslogtreecommitdiff
path: root/Djup.Native/Types.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Djup.Native/Types.cs')
-rw-r--r--Djup.Native/Types.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Djup.Native/Types.cs b/Djup.Native/Types.cs
index c930bd6..572277f 100644
--- a/Djup.Native/Types.cs
+++ b/Djup.Native/Types.cs
@@ -39,3 +39,15 @@ public struct Ball
public Vec2 Position { get; set; }
public Vec2 Velocity { get; set; }
}
+
+public enum LogLevel
+{
+ Trace,
+ Debug,
+ Info,
+ Warn,
+ Error,
+ Fatal
+}
+
+public delegate void LoggerDelegate(LogLevel level, string source, int line, string message);