19 lines
No EOL
436 B
C#
19 lines
No EOL
436 B
C#
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace gay.lilyy.MenuIconReplacer
|
|
{
|
|
[System.Serializable]
|
|
public class TextureReplacement
|
|
{
|
|
public Texture2D from;
|
|
public Texture2D to;
|
|
}
|
|
|
|
public class MenuIconReplacerConfig : MonoBehaviour, VRC.SDKBase.IEditorOnly
|
|
{
|
|
[HideInInspector]
|
|
public List<TextureReplacement> replacements = new List<TextureReplacement>();
|
|
}
|
|
} |