mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
21 lines
410 B
Objective-C
21 lines
410 B
Objective-C
//
|
|
// CoverViewController.h
|
|
// Play
|
|
//
|
|
// Created by Lounge Katt on 8/15/15.
|
|
// Copyright (c) 2015 Jean-Philip Desjardins. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "../ui_shared/BootablesDbClient.h"
|
|
|
|
typedef std::vector<BootablesDb::Bootable> BootableArray;
|
|
|
|
@interface CoverViewController : UICollectionViewController
|
|
{
|
|
BootableArray* _bootables;
|
|
}
|
|
|
|
- (IBAction)onExit:(id)handler;
|
|
|
|
@end
|