﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerPrefsReset : MonoBehaviour
{
    public void ResetPlayerScore()
    {
        PlayerPrefs.SetInt("PlayerScore", 0);
        Debug.Log("Reset OK");
    }
}


