Add GUI Support

This commit is contained in:
2025-06-12 15:48:37 -05:00
parent bfb029ec36
commit 18b15136b5
5 changed files with 118 additions and 3 deletions

View File

@ -933,6 +933,7 @@ namespace Tesses::CrossLang
env->DeclareFunction(gc, "TypeIsDateTime","Get whether object is a DateTime",{"object"},TypeIsDateTime);
newTypes->DeclareFunction(gc, "Regex", "Create regex object",{"regex"},[](GCList& ls,std::vector<TObject> args)->TObject {
std::string str;
if(GetArgument(args,0,str))
@ -1075,6 +1076,7 @@ namespace Tesses::CrossLang
RegisterOGC(gc, env);
RegisterProcess(gc,env);
RegisterClass(gc,env);
RegisterSDL2(gc,env);
gc->RegisterEverything(env);