revival commit

This commit is contained in:
Tinglyyy
2026-01-18 14:54:52 +01:00
parent 52f243f3a2
commit 2b7d30810b
23 changed files with 901 additions and 66 deletions

View File

@@ -0,0 +1,28 @@
/* Author: Maple
* Dec. 12 2025
* */
package org.openautonomousconnection.webclient.ui;
import lombok.Getter;
import org.openautonomousconnection.webclient.network.website.tab.Tab;
import java.net.MalformedURLException;
import java.net.URI;
public final class MainFrame extends BrowserFrame{
@Getter
private Tab openTab;
public MainFrame() {
this.setSize(800, 600);
try {
this.openTab = new Tab(
URI.create("web://open-autonomous-connection.org").toURL()
);
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
}
}