// interface representing someone who fights // example interface package interfaceexample; public interface Fighter { // no variables // all methods abstract (no keyword) public void attack(); public void defend(); }