Files
Continentis/Assets/OtherPlugins/Wingman/WingmanComponentCopy.cs
SoulliesOfficial d09b58fd80 架构大更
2026-03-20 11:56:50 -04:00

23 lines
439 B
C#

#if UNITY_EDITOR
using System;
using UnityEditor;
using UnityEngine;
namespace WingmanInspector
{
public class WingmanComponentCopy
{
public Type ComponentType;
public SerializedObject SerializedObject;
public WingmanComponentCopy(Component component)
{
SerializedObject = new SerializedObject(component);
ComponentType = component.GetType();
}
}
}
#endif