Add custom console and allow runtimes to set the config dir

This commit is contained in:
2025-08-21 08:18:29 -05:00
parent 52218d6c2d
commit 05713fc39c
10 changed files with 49 additions and 6 deletions

View File

@@ -1813,6 +1813,7 @@ class GC {
bool canRegisterClass;
bool sqlite3Scoped;
bool locked;
TDictionary* customConsole =nullptr;
};
class TRootEnvironment : public TEnvironment
@@ -2565,4 +2566,6 @@ class GC {
MarkedTObject CreateMarkedTObject(GCList& gc, TObject o);
std::string JoinPeriod(std::vector<std::string>& p);
TObject GetClassInfo(GCList& ls,TFile* f, uint32_t index);
extern Tesses::Framework::Filesystem::VFSPath CrossLangConfigPath;
};