split Project into multiple Modules to prepare for development of Servers

This commit is contained in:
Valentin Heiserer
2024-04-18 00:26:11 +02:00
committed by GitHub
parent 949c00bb28
commit c94127acf1
79 changed files with 200 additions and 155 deletions

View File

@@ -0,0 +1,18 @@
package org.schafkopf;
import org.schafkopf.karte.Karte;
import org.schafkopf.karte.KartenListe;
import org.schafkopf.karte.KartenUtil;
/** Creates an Instance of the Backend Server. */
public class Main {
/** Creates an Instance of the Backend Server. */
public static void main(String[] args) {
System.out.println("Hello and welcome!");
KartenListe testHand = KartenUtil.zieheZufallsHand(8);
for (Karte karte : testHand.getKartenListe()) {
System.out.println(karte.getName());
}
}
}