// About.m//// Created by Daniel & Holger on 21.02.12.// Copyright 2012 Gamua. All rights reserved.//#import "About.h"
@interfaceAbout@property(weak)Guy*daniel;@property(strong)Guy*holger;@end@implementationAbout-(id)init{if((self=[superinit])){_gamua=[[Gamuaalloc]init];// todo: singleton?_gamua.mail=[NSStringstringWithFormat:@"%@\@%@",@"office",self.domain];// todo: obfuscate!_gamua.address=@"Steinhüblstraße 1";_gamua.city=@"Attnang-Puchheim";_gamua.zip=4800;_gamua.country=@"Austria";// cows, no cangaroos!_gamua.twitter=@"\@gamua";_daniel=[[Guyalloc]init];_daniel.jobs=@[@"Framework Architect",@"Support"];_daniel.displayName=@"Daniel Sperl";_daniel.twitter=@"\@PrimaryFeather";// double '@' looking weird!_holger=[Guyguy];_holger.jobs=@[@"Flox Architect",@"Webmaster",@"IT"];_holger.displayName=@"Holger Weissböck";// UTF-8 or change name!_holger.twitter=@"\@holgua";// todo: add a list of our games!// todo: port mail addresses over from as3 version}returnself;}-(void)showCredits{NSLog(@"Original bird design by Chris Georgenes");NSLog(@"Additional bird imagery by Alexander Landa");NSLog(@"Webpage design by %@",holger.name);NSLog(@"Webpage powered by Jekyll (%@)",@"jekyllrb.com");NSLog(@"Webpage hosted by Uberspace (%@)",@"uberspace.de");}@end