ample/Ample/SlotViewController.h

30 lines
516 B
C
Raw Normal View History

2020-09-11 02:06:41 +00:00
//
2021-05-30 22:19:51 +00:00
// SlotViewController.h
2020-09-11 02:06:41 +00:00
// Ample
//
// Created by Kelvin Sherlock on 9/9/2020.
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Media.h"
2020-09-11 02:06:41 +00:00
NS_ASSUME_NONNULL_BEGIN
2021-05-30 22:19:51 +00:00
@interface SlotViewController : NSViewController
2020-09-11 02:06:41 +00:00
@property NSArray *args;
@property Media media;
2020-09-11 02:06:41 +00:00
@property NSSize resolution;
@property (nonatomic) NSString *machine;
@end
2021-05-30 22:19:51 +00:00
@interface SlotViewController (OutlineView) <NSOutlineViewDelegate, NSOutlineViewDataSource>
2020-09-11 02:06:41 +00:00
@end
NS_ASSUME_NONNULL_END