mirror of
https://github.com/maxartz15/TextureCombiner.git
synced 2024-11-13 00:35:30 +01:00
1165a4e4a8
P4 -> GitHub sync.
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();
|
|
}
|
|
}
|
|
}
|