Added basic C# field reflection in editor

This commit is contained in:
Antoine Pilote
2024-08-13 21:12:11 -04:00
parent 01a7db2132
commit 9733e9651a
5 changed files with 310 additions and 10 deletions

View File

@@ -12,7 +12,6 @@ namespace Nuake.Net
/// This is the core Nuake.Net API.
/// All internal call should happen in this file.
/// </summary>
public class Engine
{
internal static unsafe delegate*<NativeString, void> LoggerLogIcall;
@@ -29,6 +28,12 @@ namespace Nuake.Net
}
}
[AttributeUsage(AttributeTargets.Field)]
public sealed class ExposedAttribute : Attribute
{
}
public class Debug
{
internal static unsafe delegate*</* start */ float, float, float,
@@ -47,6 +52,7 @@ namespace Nuake.Net
}
}
}