Added pattern class

This commit is contained in:
Malte Tammena 2017-10-18 14:05:15 +02:00
parent b89eae69bc
commit 013bbd57b6

View file

@ -0,0 +1,16 @@
package player.malte;
public class Pattern {
public Pattern(Item... parts) {
}
public class Item {
// TODO: DO!
public Item() {
}
}
}