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
// | |
// FirstWorkSpace.m | |
// tabbed | |
// | |
// Created by moi on 12-10-15. | |
// Copyright (c) 2012 moi. All rights reserved. | |
// | |
#import "FirstWorkSpace.h" |
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
// | |
// C4Logo.swift | |
// C4Swift | |
// | |
// Created by travis on 2014-11-24. | |
// Copyright (c) 2014 C4. All rights reserved. | |
// | |
import Foundation | |
import C4Core |
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
class Rule { | |
var a: IsometricPoint | |
var b: IsometricPoint | |
lazy var targets = [[IsometricPoint]]() | |
init(_ a: IsometricPoint, _ b: IsometricPoint) { | |
self.a = a | |
self.b = b | |
} | |
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
// | |
// C4WorkSpace.m | |
// C4Code | |
// | |
// Created by Travis Kirton on 11/4/2013. | |
// | |
#import "MyWorkSpace.h" | |
@interface C4WorkSpace () |
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
// | |
// C4Defines.h | |
// C4iOSDevelopment | |
// | |
// Created by Travis Kirton on 11-10-12. | |
// Copyright (c) 2011 mediart. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
// | |
// C4WorkSpace.m | |
// C4Code | |
// | |
// Created by Travis Kirton on 11/4/2013. | |
// | |
//Defines set in "stone" a value for a variable | |
//These are best to put in C4Defines.h, but here they suffice for this example | |
#define UA_NAV_BAR_COLOR [UIColor colorWithRed:0.96875 green:0.96875 blue:0.96875 alpha:1] |
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
// | |
// C4WorkSpace.m | |
// C4Code | |
// | |
// Created by Travis Kirton on 11/4/2013. | |
// | |
//Defines set in "stone" a value for a variable | |
//These are best to put in C4Defines.h, but here they suffice for this example | |
#define UA_NAV_BAR_COLOR [UIColor colorWithRed:0.96875 green:0.96875 blue:0.96875 alpha:1] |
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
// | |
// C4WorkSpace.m | |
// david | |
// | |
// Created by moi on 13-06-12. | |
// Copyright (c) 2013 moi. All rights reserved. | |
// | |
#import "C4WorkSpace.h" |
NewerOlder