mirror of
https://github.com/maxartz15/TextureCombiner.git
synced 2025-02-18 20:59:53 +01:00
15 lines
249 B
C#
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();
|
|
}
|
|
}
|
|
}
|