Skip to content

Instantly share code, notes, and snippets.

@mayooresan
Created July 18, 2017 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayooresan/c2fb132247f77daae1227bf2306f00e7 to your computer and use it in GitHub Desktop.
Save mayooresan/c2fb132247f77daae1227bf2306f00e7 to your computer and use it in GitHub Desktop.
import UIKit
protocol SpyDelegate {
func didFindWeaponOfMassDestruction(found : Bool)
}
class EnemyBaseVC: UIViewController {
let hasWeaponOfMassDescrtruction : Bool = true
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func sendingMessage(_ sender: Any) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment