2015-08-15 03:08:32 -04:00
|
|
|
//
|
|
|
|
// CoverViewController.h
|
|
|
|
// Play
|
|
|
|
//
|
|
|
|
// Created by Lounge Katt on 8/15/15.
|
|
|
|
// Copyright (c) 2015 Jean-Philip Desjardins. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2017-10-31 07:35:57 -04:00
|
|
|
#import "../ui_shared/BootablesDbClient.h"
|
2015-08-15 03:08:32 -04:00
|
|
|
|
2017-10-31 07:35:57 -04:00
|
|
|
typedef std::vector<BootablesDb::Bootable> BootableArray;
|
2015-08-15 03:08:32 -04:00
|
|
|
|
2017-10-31 07:35:57 -04:00
|
|
|
@interface CoverViewController : UICollectionViewController
|
|
|
|
{
|
|
|
|
BootableArray* _bootables;
|
|
|
|
}
|
2015-08-15 03:08:32 -04:00
|
|
|
|
2018-10-26 13:29:31 -04:00
|
|
|
- (IBAction)onExit:(id)handler;
|
2018-10-26 08:14:14 -04:00
|
|
|
|
2015-08-15 03:08:32 -04:00
|
|
|
@end
|