mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
0616991a1b
- bookmark edit window - rom window now shows machine description, tooltip is name - fix split floppy logic to work with a2superdrive - fix software list loading from default - mame 241 machine updates
22 lines
357 B
Objective-C
22 lines
357 B
Objective-C
//
|
|
// DiskImage+CoreDataClass.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 2/7/2022.
|
|
// Copyright © 2022 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DiskImage : NSManagedObject
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#import "DiskImage+CoreDataProperties.h"
|