Skip to content

OnSignContentCopied

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnSignContentCopied( SignContent instance, ISignage s, IUGCBrowserEntity b )
{
    Puts( "OnSignContentCopied works!" );
}

Location

  • SignContent::CopyInfoToSign(ISignage s, IUGCBrowserEntity b)
csharp
//---
	b.EditingHistory.Clear();
	foreach (ulong current in this.editHistory)
	{
		b.EditingHistory.Add(current);
	}
	Interface.CallHook("OnSignContentCopied", this, s, b);
}

Released under the MIT License.