Files

13 lines
242 B
C#
Raw Permalink 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;
}