// Implemented by Ship and Shield.
// Used by AliendBullet to find all of the Ships and Shields (so that it can test for collisions).
//
// See also Alien, which is a similar interface used by Bullet.

interface Human : Role {

    fun hit()

}
