protocol Blinkable {
var isBlinking: Bool {get}
var blinkSpeed: Double {get set}
func startBlinking(blinkSpeed: Double) -> Void
}