11 lines
155 B
C#
11 lines
155 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class AppSwitcher : MonoBehaviour
|
||
|
|
{
|
||
|
|
public void OpenAppSwitcher()
|
||
|
|
{
|
||
|
|
Debug.Log("I'm mr. frog, hello!");
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|