Skip to content

Commit

Permalink
Set NWNX struct methods public.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhett12321 committed Jan 18, 2025
1 parent f8ae8dc commit b2c67ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NWNX.NET/src/main/API/NWNXAPI.VM.NWNX.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ public static partial class NWNXAPI
/// <param name="value">The value to push.</param>
[LibraryImport("NWNX_DotNET", EntryPoint = "NWNXPushEffect")]
[UnmanagedCallConv(CallConvs = [typeof(CallConvCdecl)])]
internal static partial void NWNXPushEffect(IntPtr value);
public static partial void NWNXPushEffect(IntPtr value);

/// <summary>
/// NWNX VM Function. Push an item property game structure pointer to the current argument stack.
/// </summary>
/// <param name="value">The value to push.</param>
[LibraryImport("NWNX_DotNET", EntryPoint = "NWNXPushItemProperty")]
[UnmanagedCallConv(CallConvs = [typeof(CallConvCdecl)])]
internal static partial void NWNXPushItemProperty(IntPtr value);
public static partial void NWNXPushItemProperty(IntPtr value);

/// <summary>
/// NWNX VM Function. Call the function set with <see cref="NWNXSetFunction"/> with the current argument stack.
Expand Down

0 comments on commit b2c67ef

Please sign in to comment.