FINAL COMMIT ITS BASIC AND IT WORKS

This commit is contained in:
LinlyBoi
2023-03-07 17:43:54 +02:00
parent 1dc7909a90
commit df185296dc
2 changed files with 2 additions and 20 deletions

View File

@@ -1,19 +1 @@
# template # There's no reason to look at this....
problem_statement
## Prerequisite
- JDK version 18.0.2
## How to build
TBD
## How to use
TBD
## How to test
TBD

View File

@@ -16,6 +16,6 @@ public class Sign extends JFrame {
this.setPreferredSize(new Dimension(300, 300)); this.setPreferredSize(new Dimension(300, 300));
this.setLocationRelativeTo(null); this.setLocationRelativeTo(null);
this.setVisible(true); this.setVisible(true);
this.setBackground(Color.BLACK); this.getContentPane().setBackground(Color.BLACK);
} }
} }