Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Remove()

void ReLogic.Peripherals.RGB.ShaderSelector.ShaderGroup.Remove ( ChromaShader shader)
inline

Definition at line 50 of file ShaderSelector.cs.

51 {
53 while (linkedListNode != null)
54 {
56 if (linkedListNode.Value.Shader == shader)
57 {
58 Shaders.Remove(linkedListNode);
59 }
60 linkedListNode = next;
61 }
62 }
bool ICollection< KeyValuePair< TKey, TValue > >. Remove(KeyValuePair< TKey, TValue > keyValuePair)

References System.Collections.Generic.Dictionary< TKey, TValue >.Remove().