This is HumanScoreBoard.m in view mode; [Download] [Up]
// HumanScoreBoard.m // Project: Cribbage // Stephan Wacker // 93-10-04 #import "HumanScoreBoard.h" #import "Cribbage.h" #import "Preferences.h" @implementation HumanScoreBoard - (NXColor) color { id preferences = [[NXApp delegate] preferences]; if( preferences ) { return [preferences humanColor]; } else { return [Preferences defaultHumanColor]; } } - (BOOL) topRowFirst { return NO; } @end // HumanScoreBoard
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.