PJ/Assets/scripts/HaveOrNot.cs

16 lines
259 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class BuyOrNot : MonoBehaviour
{
int Lan;
private void Start()
{
Lan = PlayerPrefs.GetInt("LanguageID");
}
}