override protected void DerivedWashNode(DLink pLink) { Debug.Assert(pLink != null); Texture pNode = (Texture)pLink; pNode.Wash(); }
protected override void derivedWash(DLink pLink) { Debug.Assert(pLink != null); Texture pText = (Texture)pLink; pText.Wash(); }
public static void Remove(Texture pTexture) { Debug.Assert(pMan != null); Debug.Assert(pTexture != null); pMan.baseRemove(pTexture); pTexture.Wash(); }
protected override void derivedWash(DLink node) { Texture texture = (Texture)node; texture.Wash(); }
protected override void DerivedWash(DLink pDLink) { Texture pTNode = (Texture)pDLink; pTNode.Wash(); }