Created
July 7, 2018 21:45
-
-
Save EricADockery/ec944c183cd847c58209a042bd149913 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// FeaturedViewPresenter.swift | |
// iTunesFeatureBanner | |
// | |
// Created by Eric Dockery on 7/7/18. | |
// Copyright © 2018 Eric Dockery. All rights reserved. | |
// | |
protocol FeaturedPresenting: class { | |
func scroll() | |
} | |
class FeaturedViewPresenter { | |
var featuredFighters: [FighterData]? | |
weak var delegate: FeaturedPresenting? | |
func scroll() { | |
delegate?.scroll() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment