1
0
Fork 0

Anlegen erster Klassen und Struktur

main
Philipp Kotte 2023-10-05 23:32:29 +02:00
parent f4b1f5409b
commit d5b1190e9b
7 changed files with 45 additions and 0 deletions

View File

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Kartenfarbe" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:32
============================================================
*/
package Domain.Enums;
public enum Kartenfarbe {
}

View File

View File

11
Facade/Spiel.java 100644
View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Spiel" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:25
============================================================
*/
package Facade;
public class Spiel {
}

View File

@ -0,0 +1,11 @@
/*
============================================================
This is the "Persistenz" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:25
============================================================
*/
package Infrastructure;
public class Persistenz {
}

12
UI/SpielCLI.java 100644
View File

@ -0,0 +1,12 @@
/*
============================================================
This is the "SpielCLI" file from Author: Philipp Kotte
written on: 05 / 10 / 2023 at: 23:25
============================================================
*/
package UI;
public abstract class SpielCLI {
public int id;
}