mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-30 07:24:28 +00:00
21 lines
352 B
C
21 lines
352 B
C
|
//
|
||
|
// ROMBrowserDelegate.h
|
||
|
// MA2ME
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 8/16/2020.
|
||
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface ROMBrowserDelegate : NSObject <NSBrowserDelegate>
|
||
|
|
||
|
@property NSString *model;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|