mirror of
https://github.com/libretro/Play-.git
synced 2025-02-24 21:50:58 +00:00
22 lines
351 B
Objective-C
22 lines
351 B
Objective-C
//
|
|
// ViewOrientation.h
|
|
// Play
|
|
//
|
|
// Created by Lounge Katt on 8/15/15.
|
|
// Copyright (c) 2015 Jean-Philip Desjardins. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface CollectionView : NSObject
|
|
{
|
|
NSArray* diskImages;
|
|
}
|
|
|
|
@property NSArray* diskImages;
|
|
|
|
+ (CollectionView*) getInstance;
|
|
- (NSArray*) buildCollection;
|
|
|
|
@end
|