15 lines
259 B
C#
Executable file
15 lines
259 B
C#
Executable file
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");
|
|
}
|
|
|
|
}
|