CEngineSharp_Client.Graphics.TextureManager.GameTextureManager.GetTextureName C# (CSharp) Method

GetTextureName() public method

public GetTextureName ( Texture texture ) : string
texture Texture
return string
        public string GetTextureName(Texture texture)
        {
            return (from value in _textures where value.Value == texture select value.Key).FirstOrDefault();
        }