Created
July 27, 2010 05:22
-
-
Save clayton/491780 to your computer and use it in GitHub Desktop.
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
// | |
// dice.h | |
// craps | |
// | |
// Created by Clayton Lengel-Zigich on 7/26/10. | |
// Copyright 2010 __MyCompanyName__. All rights reserved. | |
// | |
@interface Dice : NSObject | |
{ | |
NSArray loadedDice; | |
NSArray rollCount; | |
} | |
- (void) setRollCount: (NSInteger) r; | |
- (void) incrementRollCount; | |
- (void) setLoadedDice: (NSArray) rollList; | |
- (NSArray) roll; | |
@end // Dice |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment