TextureCombiner/Assets/Scripts/Options.cs
max 1165a4e4a8 Init.
P4 -> GitHub sync.
2020-11-01 03:54:32 +01:00

15 lines
249 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TextureCombiner
{
public abstract class Options : MonoBehaviour
{
protected virtual void OnDisable()
{
PlayerPrefs.Save();
}
}
}