Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/rail/IRailScreenshotHelper.cs
2026-02-21 16:45:37 +08:00

16 lines
381 B
C#

namespace rail
{
public interface IRailScreenshotHelper
{
IRailScreenshot CreateScreenshotWithRawData(byte[] rgb_data, uint len, uint width, uint height);
IRailScreenshot CreateScreenshotWithLocalImage(string image_file, string thumbnail_file);
void AsyncTakeScreenshot(string user_data);
void HookScreenshotHotKey(bool hook);
bool IsScreenshotHotKeyHooked();
}
}