DominoKit is a Swift library for creating applications with dominoes.
Create a Podfile
and add DominoKit.
target 'YourApp' do
pod 'DominoKit'
end
Using the Swift Package Manager, ensure DominoKit is included in the dependencies section of Package.swift
:
let package = Package(
name: "MyProject",
dependencies: [
.Package(url: "https://github.com/jarrodparkes/DominoKit.git", majorVersion: 1),
]
)
import DominoKit
let sixEight = Domino(suitOne: .six, suitTwo: .eight)
print(sixEight) // "[06|08]"
print(sixEight.suitOne) // "06"
print(sixEight.suitTwo) // "08"
print(sixEight.isDouble) // false
print(sixEight.isSingle) // true
print(sixEight.rank) // 14
print(sixEight.hasMatchingSuit(.six)) // true
let oneFive: Domino = "[01|05]"
print(oneFive.rank) // 6
let doubleNineSet = DominoSet.standardSet(.nine)
doubleNineSet.shuffle()
if let randomDomino = doubleNineSet.deal() {
print(randomDomino) // domino between "[00|00]" and "[09|09]"
}
DominoKit is available under the Apache 2.0 license. See the LICENSE file for more info.