added: debug overlay functional

This commit is contained in:
Chris
2025-08-25 19:35:48 -04:00
parent af0dde30f2
commit 2a699019c4
11 changed files with 7534 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
using UnityEngine;
namespace Reset.Core.Tools{
public class DebugOverlayEntry{
public string page;
public string trackedName;
public string trackedValue;
}
}