forked from fiuba/algo3_proyecto_base_tp2
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: agus-germi <agerminario@fi.uba.ar> Co-authored-by: mariagalindez <mgalindez@fi.uba.ar> Co-authored-by: SairBarreto <gbarreto@fi.uba.ar> Co-authored-by: fnpratto <fnpratto@gmail.com>
- Loading branch information
1 parent
76cd139
commit b243489
Showing
17 changed files
with
79 additions
and
80 deletions.
There are no files selected for viewing
7 changes: 0 additions & 7 deletions
7
src/main/java/edu/fiuba/algo3/modelo/Equipamiento/Armadura.java
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/edu/fiuba/algo3/modelo/Equipamiento/Desequipado.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
src/main/java/edu/fiuba/algo3/modelo/equipamientos/Armadura.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package edu.fiuba.algo3.modelo.equipamientos; | ||
|
||
import edu.fiuba.algo3.modelo.Equipamiento; | ||
|
||
public class Armadura implements Equipamiento { | ||
public Equipamiento mejorarEquipamiento() { | ||
return new EscudoYEspada(); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/edu/fiuba/algo3/modelo/equipamientos/Casco.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package edu.fiuba.algo3.modelo.equipamientos; | ||
|
||
import edu.fiuba.algo3.modelo.Equipamiento; | ||
|
||
public class Casco implements Equipamiento { | ||
public Equipamiento mejorarEquipamiento() { | ||
return new Armadura(); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/edu/fiuba/algo3/modelo/equipamientos/Desequipado.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package edu.fiuba.algo3.modelo.equipamientos; | ||
|
||
import edu.fiuba.algo3.modelo.Equipamiento; | ||
|
||
public class Desequipado implements Equipamiento { | ||
public Equipamiento mejorarEquipamiento() { | ||
return new Casco(); | ||
} | ||
|
||
} |
4 changes: 3 additions & 1 deletion
4
...o3/modelo/Equipamiento/EscudoYEspada.java → ...3/modelo/equipamientos/EscudoYEspada.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...iuba/algo3/modelo/Equipamiento/Llave.java → ...uba/algo3/modelo/equipamientos/Llave.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.../fiuba/algo3/modelo/Seniority/Novato.java → ...iuba/algo3/modelo/seniorities/Novato.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...ba/algo3/modelo/Seniority/SemiSenior.java → .../algo3/modelo/seniorities/SemiSenior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
src/main/java/edu/fiuba/algo3/modelo/seniorities/Senior.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package edu.fiuba.algo3.modelo.seniorities; | ||
|
||
import edu.fiuba.algo3.modelo.Seniority; | ||
|
||
public class Senior implements Seniority { | ||
public Seniority ascender(int turno) { | ||
return this; | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
...uba/algo3/entregas/CasosDeUsoSemana1.java → ...algo3/entregas/CasosDeUsoSemana1Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.