Update README.md
DominoKit is a Swift library for creating applications with dominoes.
Create a Podfile and add DominoKit.
Podfile
target 'YourApp' do pod 'DominoKit' end
Using the Swift Package Manager, ensure DominoKit is included in the dependencies section of Package.swift:
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.
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
Summary
DominoKit is a Swift library for creating applications with dominoes.
Installation
Cocoapods
Create a
Podfile
and add DominoKit.Swift Package Manager
Using the Swift Package Manager, ensure DominoKit is included in the dependencies section of
Package.swift
:Usage
License
DominoKit is available under the Apache 2.0 license. See the LICENSE file for more info.