mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 13:49:18 +01:00
12 lines
186 B
Java
12 lines
186 B
Java
import java.awt.*;
|
|
import java.io.*;
|
|
|
|
|
|
public class PdeEditorOutput extends Component {
|
|
PdeEditor editor;
|
|
|
|
public PdeEditorOutput(PdeEditor editor) {
|
|
this.editor = editor;
|
|
}
|
|
}
|