2023.11.07 [테킷 백엔드 장희성 강사님 강의]
// 사용방법
class Hong2 extends Player implements Doctor2 {
@Override
public void 방어() {
System.out.println("방어");
}
@Override
public void heal() {
System.out.println("치료");
}
@Override
public void talk() {
System.out.println("대화");
}
}