UPF/Assets/Game/Scripts/OtherUIbuttons.cs

16 lines
238 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
public class OtherUIbuttons : MonoBehaviour
{
public GameObject Re;
public void forgotPass()
{
Re.SetActive(true);
}
}