mirror of
https://github.com/Luigi30/FruitMachine-Swift.git
synced 2026-03-12 12:41:43 +00:00
15 lines
250 B
Swift
15 lines
250 B
Swift
//
|
|
// Peripheral.swift
|
|
// FruitMachine
|
|
//
|
|
// Created by Christopher Rohl on 8/2/17.
|
|
// Copyright © 2017 Christopher Rohl. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
protocol Peripheral {
|
|
var slotNumber: Int { get }
|
|
func installOverrides()
|
|
}
|