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

24 lines
511 B
C#

#if UNITY_EDITOR
using System.Collections.Generic;
using UnityEngine;
namespace WingmanInspector {
public class WingmanClipboard {
public readonly List<WingmanComponentCopy> Copies = new();
public void CopyComponents(List<Component> components) {
if (components == null) return;
Copies.Clear();
foreach (Component component in components) {
Copies.Add(new(component));
}
}
}
}
#endif