diff --git a/Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs b/Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs index 9d1b741..42dbf68 100644 --- a/Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs +++ b/Pepperdash Core/Pepperdash Core/Debug/DebugMemory.cs @@ -40,7 +40,7 @@ namespace PepperDash.Core.DebugThings public DebugContextItem GetOrCreateItem(string contextKey) { if (!Items.ContainsKey(contextKey)) - Items[contextKey] = new DebugContextItem() { Level = 0 }; + Items[contextKey] = new DebugContextItem(this) { Level = 0 }; return Items[contextKey]; } } @@ -49,5 +49,10 @@ namespace PepperDash.Core.DebugThings { [JsonProperty("level")] public int Level { get; set; } + + public DebugContextItem(DebugContextCollection parent) + { + + } } } \ No newline at end of file diff --git a/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo b/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo index b475b54..05a209e 100644 Binary files a/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo and b/Pepperdash Core/Pepperdash Core/PepperDash_Core.projectinfo differ