Get more done on packageserver

This commit is contained in:
2025-07-12 03:33:45 -05:00
parent 35960d5db0
commit 92f21917b1
7 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
func Tesses.CrossLang.Shell.App(dd)
{
if(dd.Arguments.Count == 1)
{
var window = new GUI.Window("CrossLang",640,480,SDL2.Window.Resizable);
window.View = new GUI.ButtonView("My Favorite Button");
VM.RunEventLoop();
}
}