12 lines
219 B
C#
12 lines
219 B
C#
4 weeks ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class ShareListener : MonoBehaviour
|
||
|
{
|
||
|
public void OnShareButton()
|
||
|
{
|
||
|
SharingManager.Instance.SnapAndShare();
|
||
|
}
|
||
|
}
|