mirror of
https://github.com/maxartz15/TextureCombiner.git
synced 2024-11-09 23:22:55 +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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|