mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 14:15:47 +03:00
Merge pull request #108 from igniuss/patch-1
Added AddScreenshotToLibrary
This commit is contained in:
commit
59d21a7efb
@ -66,5 +66,15 @@ public unsafe void Write( byte[] rgbData, int width, int height )
|
|||||||
client.native.screenshots.WriteScreenshot( (IntPtr) ptr, (uint) rgbData.Length, width, height );
|
client.native.screenshots.WriteScreenshot( (IntPtr) ptr, (uint) rgbData.Length, width, height );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public unsafe void AddScreenshotToLibrary( string filename, string thumbnailFilename, int width, int height)
|
||||||
|
{
|
||||||
|
client.native.screenshots.AddScreenshotToLibrary(filename, thumbnailFilename, width, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
public unsafe void AddScreenshotToLibrary( string filename, int width, int height)
|
||||||
|
{
|
||||||
|
client.native.screenshots.AddScreenshotToLibrary(filename, null, width, height);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user