Skip to content
Snippets Groups Projects
Select Git revision
  • 2cf1c2f7f9fd605a34c407f796b3e945a1083a21
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

ShinyThings.cs

Blame
    • MaZiFAU's avatar
      26906743
      Bug Fix; QoL; WIP; ListFuncs V1.0; StageFileUpdate; · 26906743
      MaZiFAU authored
      Bug Fix:
      +Starting Game in RiverWorld gets stuck
      +Removed Guard clause from Loader
      QoL:
      +Increased Angle Hint visibility
      WIP:
      +AttachedFuncFact temporarely reverted to using Arrays (MMT type missing)
      ListFuncs V1.0:
      +ListFuncs fully Operational
      26906743
      History
      Bug Fix; QoL; WIP; ListFuncs V1.0; StageFileUpdate;
      MaZiFAU authored
      Bug Fix:
      +Starting Game in RiverWorld gets stuck
      +Removed Guard clause from Loader
      QoL:
      +Increased Angle Hint visibility
      WIP:
      +AttachedFuncFact temporarely reverted to using Arrays (MMT type missing)
      ListFuncs V1.0:
      +ListFuncs fully Operational
    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; }
    	}
    }