Skip to content

Instantly share code, notes, and snippets.

@clayton
Created July 27, 2010 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clayton/491780 to your computer and use it in GitHub Desktop.
Save clayton/491780 to your computer and use it in GitHub Desktop.
//
// 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