10 lines
244 B
C#
10 lines
244 B
C#
namespace Content.Shared._NF.Cloning;
|
|
|
|
/// <summary>
|
|
/// Indicates that this Component should be transferred to the new entity when the entity is cloned (for example, using a cloner)
|
|
/// </summary>
|
|
public interface ITransferredByCloning
|
|
{
|
|
}
|
|
|