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,13 @@
/* Author: Maple
* Dec. 12 2025
* */
package org.openautonomousconnection.webclient.ui;
import javax.swing.*;
public abstract class BrowserFrame extends JFrame {
public BrowserFrame() {
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}