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

Create the classe RockyFactory

parent fd03d021
Branches
No related tags found
No related merge requests found
package model;
import util.Position;
public class Rocky extends BoardElement{
private final int fireDelay=4;
public Rocky(Position position) {
super(position);
}
@Override
public String getType() {
return null;
}
@Override
public String toString() {
return null;
}
}
package model;
public class RockyFactory {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment