Skip to content
Snippets Groups Projects
Commit d0be3293 authored by CHERCHEM Sarah's avatar CHERCHEM Sarah
Browse files

Cloud : IMPLEMENTS THE METHODES

parent 1f8d2458
No related branches found
No related tags found
No related merge requests found
package model;
public class Cloud {
import model.BoardElement;
import util.Position;
public class Cloud extends BoardElement {
public Cloud(Position position) {
super(position);
}
@Override
public String getType() {
return "CLOUD";
}
@Override
public String toString() {
return "Cloud at " + position;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment