Skip to content

Commit

Permalink
Add tiger Tai Lung to Circus
Browse files Browse the repository at this point in the history
  • Loading branch information
okkhoy committed Feb 10, 2023
1 parent d2d073b commit d09d018
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/circus/Circus.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
import circus.animal.Animal;
import circus.animal.Duck;
import circus.animal.Parrot;
import circus.animal.Tiger;
import circus.stuff.Cannon;
import circus.stuff.Equipment;
import circus.stuff.Ladder;

public class Circus {
private static Animal[] animals = {
new Duck("Drake"),
new Parrot("Polly")
new Parrot("Polly"),
new Tiger("Tai Lung")
};
private static Equipment[] equipments = {
new Ladder(50),
Expand Down

0 comments on commit d09d018

Please sign in to comment.