14 lines
494 B
C#
14 lines
494 B
C#
namespace UnityNative.Sharing
|
|
{
|
|
public class NullUnityNativeSharingAdapter : IUnityNativeSharingAdapter
|
|
{
|
|
public void ShareScreenshotAndText(string shareText, string filePath, bool showShareDialogBox = true, string shareDialogBoxText = "Select App To Share With", string mimeType = "image/*")
|
|
{
|
|
}
|
|
|
|
public void ShareText(string shareText, bool showShareDialogBox = true, string shareDialogBoxText = "Select App To Share With")
|
|
{
|
|
}
|
|
}
|
|
}
|