added Figure to Player for visual representation

This commit is contained in:
Johannes Schmelz 2024-11-12 22:36:02 +01:00
parent 81731247c7
commit 2cc1a338ec

View File

@ -0,0 +1,17 @@
package pp.monopoly.model;
public class Figure implements Item{
@Override
public <T> T accept(Visitor<T> visitor) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'accept'");
}
@Override
public void accept(VoidVisitor visitor) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'accept'");
}
}