changed project structure

This commit is contained in:
2025-02-20 12:17:18 +01:00
parent b117d476fd
commit 906e95d949
8 changed files with 115 additions and 15 deletions

View File

@@ -0,0 +1,16 @@
package de.javagames;
public class Functions {
public static void wait(int seconds)
{
try
{
Thread.sleep(seconds * 1000);
}
catch(InterruptedException ex)
{
Thread.currentThread().interrupt();
}
}
}