Play-/Source/ui_ios/CoverViewController.h

22 lines
410 B
C
Raw Normal View History

//
// 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"
2017-10-31 07:35:57 -04:00
typedef std::vector<BootablesDb::Bootable> BootableArray;
2017-10-31 07:35:57 -04:00
@interface CoverViewController : UICollectionViewController
{
BootableArray* _bootables;
}
2018-10-26 13:29:31 -04:00
- (IBAction)onExit:(id)handler;
2018-10-26 08:14:14 -04:00
@end