TextureCombiner/Assets/Scripts/Options.cs

15 lines
249 B
C#
Raw Normal View History

2020-11-01 03:54:32 +01:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TextureCombiner
{
public abstract class Options : MonoBehaviour
{
protected virtual void OnDisable()
{
PlayerPrefs.Save();
}
}
}