File: MBHorde.h

package info (click to toggle)
stepbill.app 2.4-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 1,044 kB
  • ctags: 68
  • sloc: objc: 2,111; makefile: 44
file content (28 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* MBHorde */

/* #import <Cocoa/Cocoa.h> */
#import <AppKit/AppKit.h>

/* Counters */
#define HORDE_COUNTER_OFF 0
#define HORDE_COUNTER_ON 1
#define HORDE_COUNTER_MAX 1

@interface MBHorde : NSObject
{
    IBOutlet id game;
    IBOutlet id network;
}

- (void)Horde_setup;
- (void)Horde_update:(int)iteration;
- (void)Horde_draw;
- (void)Horde_move_bill:bill;
- (void)Horde_remove_bill:bill;
- (void)Horde_add_bill:bill;
- Horde_clicked_stray:(int)x :(int)y;
- (int)Horde_process_click:(int)x :(int)y;
- (void)Horde_inc_counter:(int)counter :(int)val;
- (int)Horde_get_counter:(int)counter;

@end