Skip to content
Snippets Groups Projects
Commit 25555fc4 authored by BELHACHEMI Mehdi's avatar BELHACHEMI Mehdi
Browse files

Mehdi and Mohamed : creating Cloud and Road classes

parent 6eb341a0
No related branches found
No related tags found
No related merge requests found
package model;
import util.Position;
public class Cloud {
private Position position;
public Cloud(Position position){
this.position = position;
}
public Position getPosition() {
return position;
}
}
package model;
import util.Position;
public class Road {
private final Position position;
public Road(Position position){
this.position = position;
}
public Position getPosition(){
return this.position;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment