Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IContainer.cs
Go to the documentation of this file.
2
4
5public interface IContainer : IDisposable
6{
8
9 void Add(IComponent? component);
10
11 [RequiresUnreferencedCode("The Type of components in the container cannot be statically discovered to validate the name.")]
12 void Add(IComponent? component, string? name);
13
14 void Remove(IComponent? component);
15}
ComponentCollection Components
Definition IContainer.cs:7
void Add(IComponent? component, string? name)
void Remove(IComponent? component)
void Add(IComponent? component)