| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | /* |
||
| 27 | public final class ActionPointsUsed { |
||
| 28 | private final Fighter fighter; |
||
| 29 | private final int quantity; |
||
| 30 | |||
| 31 | 1 | public ActionPointsUsed(Fighter fighter, int quantity) { |
|
| 32 | 1 | this.fighter = fighter; |
|
| 33 | 1 | this.quantity = quantity; |
|
| 34 | 1 | } |
|
| 35 | |||
| 36 | public Fighter fighter() { |
||
| 37 | 1 | return fighter; |
|
| 38 | } |
||
| 39 | |||
| 40 | public int quantity() { |
||
| 41 | 1 | return quantity; |
|
| 42 | } |
||
| 44 |