11 lines
173 B
C#
11 lines
173 B
C#
|
using RoR2;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class InviteButton : MonoBehaviour
|
||
|
{
|
||
|
public void OnInviteButtonPressed()
|
||
|
{
|
||
|
PlatformSystems.lobbyManager.OpenInviteOverlay();
|
||
|
}
|
||
|
}
|