CEngineSharp_Client.Graphics.TextureManager.GameTextureManager.GetTextureName C# (CSharp) 메소드

GetTextureName() 공개 메소드

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