From 1b292bc251b3dbef532dacad9705bd197ac4227b Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Thu, 24 Mar 2022 16:32:23 +1100 Subject: Reorganise into folder groups In preparation for presenters to come in largely, lots of files starting to go everywhere... --- foray/Coordinator.swift | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 foray/Coordinator.swift (limited to 'foray/Coordinator.swift') diff --git a/foray/Coordinator.swift b/foray/Coordinator.swift deleted file mode 100644 index db97a1d..0000000 --- a/foray/Coordinator.swift +++ /dev/null @@ -1,19 +0,0 @@ -// -// Coordinator.swift -// foray -// -// Created by Nicholas Tay on 21/3/2022. -// Based on code from Paul Hudson on Hacking with Swift -// (https://www.hackingwithswift.com/articles/71/how-to-use-the-coordinator-pattern-in-ios-apps) -// - -import Foundation -import UIKit - -protocol Coordinator { - var childCoordinators: [Coordinator] { get set } - var navigationController: UINavigationController { get set } - - func start() -} - -- cgit