Build 1.1.4.0

This commit is contained in:
Markus Isberg
2023-03-31 18:40:44 +03:00
parent efba17e0ff
commit 9470edead3
483 changed files with 17487 additions and 8548 deletions
@@ -10,7 +10,7 @@ namespace Steamworks
{
public static partial class Utility
{
static internal T ToType<T>( this IntPtr ptr )
static internal T? ToType<T>( this IntPtr ptr )
{
if ( ptr == IntPtr.Zero )
return default;
@@ -18,7 +18,7 @@ namespace Steamworks
return (T)Marshal.PtrToStructure( ptr, typeof( T ) );
}
static internal object ToType( this IntPtr ptr, System.Type t )
static internal object? ToType( this IntPtr ptr, System.Type t )
{
if ( ptr == IntPtr.Zero )
return default;