Files
FueraDeEscala/Assets/Game Kit Controller/Scripts/Save System/playerPrefsCustomInfo.cs

13 lines
242 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class playerPrefsCustomInfo
{
public string Name;
public bool valueIsFloat;
public float floatValue;
public bool boolValue;
}