summaryrefslogtreecommitdiff
path: root/GameCode/SocialMediaManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GameCode/SocialMediaManager.cs')
-rw-r--r--GameCode/SocialMediaManager.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/GameCode/SocialMediaManager.cs b/GameCode/SocialMediaManager.cs
new file mode 100644
index 0000000..25f761f
--- /dev/null
+++ b/GameCode/SocialMediaManager.cs
@@ -0,0 +1,9 @@
+using UnityEngine;
+
+public class SocialMediaManager : MonoBehaviour
+{
+ public void OpenLink(string s)
+ {
+ Application.OpenURL(s);
+ }
+}