mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zanninso
378852698e
|
1 year ago | |
---|---|---|
.. | ||
README.md | 1 year ago |
README.md
AdventureInterface
Instructions
We will now use a new principle : the interfaces.
Let's create an interface Tank
in a file Tank.java
.
It has one method : getShield
that returns an integer.
Create another interface Healer
in a file Healer.java
. It has two methods :
heal
which takes aCharacter
as parameter and return nothing.getHealCapacity
which returns an integer.