Skip to content

Commit

Permalink
Update APIs (NWNX: 7fc892a9, NWN: 8193.37-14).
Browse files Browse the repository at this point in the history
  • Loading branch information
jhett12321 committed Mar 1, 2025
1 parent 2b17333 commit 94c13ca
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions NWN.Native/src/main/API/CNWSPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,17 @@ public string m_id {
}
}

public CExoString m_eventScript {
set {
NWNXLibPINVOKE.CNWSPlayer_NuiState_WindowState_m_eventScript_set(swigCPtr, CExoString.getCPtr(value));
}
get {
global::System.IntPtr cPtr = NWNXLibPINVOKE.CNWSPlayer_NuiState_WindowState_m_eventScript_get(swigCPtr);
CExoString ret = (cPtr == global::System.IntPtr.Zero) ? null : new CExoString(cPtr, false);
return ret;
}
}

public SWIGTYPE_p_std__vectorT_std__string_t m_bind_list {
set {
NWNXLibPINVOKE.CNWSPlayer_NuiState_WindowState_m_bind_list_set(swigCPtr, SWIGTYPE_p_std__vectorT_std__string_t.getCPtr(value));
Expand Down
6 changes: 6 additions & 0 deletions NWN.Native/src/main/API/NWNXLibPINVOKE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25808,6 +25808,12 @@ static NWNXLibPINVOKE() {
[return: global::System.Runtime.InteropServices.MarshalAs(global::System.Runtime.InteropServices.UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(NWNX.NET.Native.Interop.NwStringPInvokeMarshaller))]
public static extern string CNWSPlayer_NuiState_WindowState_m_id_get(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSPlayer_NuiState_WindowState_m_eventScript_set___")]
public static extern void CNWSPlayer_NuiState_WindowState_m_eventScript_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSPlayer_NuiState_WindowState_m_eventScript_get___")]
public static extern global::System.IntPtr CNWSPlayer_NuiState_WindowState_m_eventScript_get(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSPlayer_NuiState_WindowState_m_bind_list_set___")]
public static extern void CNWSPlayer_NuiState_WindowState_m_bind_list_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

Expand Down

0 comments on commit 94c13ca

Please sign in to comment.