HTML Render with example UI

This commit is contained in:
Finn
2025-12-14 19:08:46 +01:00
parent f07e0bc50a
commit d69677559e
69 changed files with 891 additions and 2534 deletions

View File

@@ -0,0 +1,8 @@
package org.openautonomousconnection.htmlparser.css;
import java.util.ArrayList;
import java.util.List;
public final class LayoutTree {
public final List<LayoutBox> boxes = new ArrayList<>();
}