ample/SlotViewController.h

49 lines
971 B
C
Raw Normal View History

2020-08-20 00:26:44 +00:00
//
// SlotViewController.h
// MA2ME
//
// Created by Kelvin Sherlock on 8/18/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface SlotViewController : NSViewController
@property (nonatomic) NSString *model;
2020-08-20 03:19:12 +00:00
@property (nonatomic) NSDictionary *machine;
2020-08-20 00:26:44 +00:00
2020-08-20 03:19:12 +00:00
@property NSString *memory;
@property NSUInteger memoryBytes;
2020-08-20 00:26:44 +00:00
@property NSString *sl0;
@property NSString *sl1;
@property NSString *sl2;
@property NSString *sl3;
@property NSString *sl4;
@property NSString *sl5;
@property NSString *sl6;
@property NSString *sl7;
@property NSString *rs232;
@property NSString *aux;
@property NSString *exp;
@property NSString *gameio;
@property NSString *printer;
@property NSString *modem;
2020-08-20 03:19:12 +00:00
@property NSSize resolution;
@property NSArray *args;
2020-08-20 00:26:44 +00:00
//-(void)setMachine: (NSDictionary *)machine;
2020-08-20 03:19:12 +00:00
- (IBAction)menuChanged:(id)sender;
- (IBAction)memoryMenuChanged:(id)sender;
2020-08-20 00:26:44 +00:00
@end
NS_ASSUME_NONNULL_END