This commit is contained in:
ahren 2023-11-27 10:48:51 +01:00
commit 96327eecb4

View File

@ -0,0 +1,25 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package aufgabe8_grafik2d;
import javax.swing.JComponent;
/**
*
* @author ahren
*/
public class Zeiger extends JComponent implements Runnable
{
public Zeiger()
{
}
@Override
public void run()
{
}
}