File: MBNetwork.h

package info (click to toggle)
stepbill.app 2.4-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,036 kB
  • ctags: 69
  • sloc: objc: 2,111; makefile: 42
file content (29 lines) | stat: -rw-r--r-- 622 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
29
/* MBNetwork */

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

/* Counters */
#define NETWORK_COUNTER_OFF 0
#define NETWORK_COUNTER_BASE 1
#define NETWORK_COUNTER_WIN 2
#define NETWORK_COUNTER_MAX 2

@interface MBNetwork : NSObject
{
    IBOutlet id game;
}

- (void)Network_setup;
- (void)Network_draw;
- (void)Network_update;
- (void)Network_toasters;
- Network_get_computer:(int)index;
- (int)Network_num_computers;
- Network_get_cable:(int)index;
- (int)Network_num_cables;
- (void)Network_clear_stray:bill;
- (void)Network_inc_counter:(int)counter :(int)val;
- (int)Network_get_counter:(int)counter;

@end