MIF_E31210681/finalskor.cs

21 lines
400 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class finalskor : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
GetComponent<Text>().text = PlayerPrefs.GetInt("skor").ToString();
}
// Update is called once per frame
void Update()
{
}
}