Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ComponentRenameEventArgs.cs
Go to the documentation of this file.
2
4{
5 public object? Component { get; }
6
7 public virtual string? OldName { get; }
8
9 public virtual string? NewName { get; }
10
11 public ComponentRenameEventArgs(object? component, string? oldName, string? newName)
12 {
13 OldName = oldName;
14 NewName = newName;
15 Component = component;
16 }
17}
ComponentRenameEventArgs(object? component, string? oldName, string? newName)