class Thor : Aliens {
    
}

extension Thor : FlyingCapability {
    func fly() {
        //cant say super.fly()
        //super.fly()
    }
}