Files
Continentis/Assets/OtherPlugins/Wingman/WingmanComponentCopy.cs
SoulliesOfficial 9b1b5ca93f initial
2025-10-03 00:02:43 -04:00

23 lines
425 B
C#

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