Skip to content
Snippets Groups Projects
Select Git revision
  • 9943822918e40e265422747491e3844fea053dd4
  • main default
  • master
  • tempAndrToMaster
4 results

MeshRendererHintAnimation.cs

Blame
  • Scope.cs 658 B
    using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.Debugger
    {
    	/// <summary>
    	/// Scope description.
    	/// </summary>
    	public class Scope
    	{
    		/// <summary>
    		/// Gets or sets Scope type.
    		/// </summary>
    		public string Type { get; set; }
    		/// <summary>
    		/// Gets or sets Object representing the scope. For <code>global</code> and <code>with</code> scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.
    		/// </summary>
    		public Runtime.RemoteObject Object { get; set; }
    	}
    }