-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
c4a2443
commit d56a62a
Showing
6 changed files
with
93 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+3.39 KB
(120%)
...ject.xcworkspace/xcuserdata/william.vabrinskas.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// AvatarMap.swift | ||
// Avatar | ||
// | ||
// Created by William Vabrinskas on 8/16/17. | ||
// Copyright © 2017 williamvabrinskas. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
import UIKit | ||
|
||
public struct AvatarSeed { | ||
var map:[Int]! | ||
var colors:Colors! | ||
var size:CGSize! | ||
var scale:Int! | ||
|
||
init(map:[Int], colors:Colors!, size:CGSize, scale:Int) { | ||
self.map = map | ||
self.colors = colors | ||
self.size = size | ||
self.scale = scale | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
# CHANGELOG | ||
|
||
# 1.0.2 | ||
* Added ability to generate and use a seed object, `AvatarSeed`, to create an `Avatar`. |