-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHubViewController.h
More file actions
26 lines (21 loc) · 912 Bytes
/
HubViewController.h
File metadata and controls
26 lines (21 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// HubViewController.h
// Remember
//
// Created by Lea Marolt on 1/12/14.
// Copyright (c) 2014 Lea Marolt Sonnenschein. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "FirstViewController.h"
#import "SelectionViewController.h"
#import "DailyDareViewController.h"
@interface HubViewController : UIViewController <SelectionViewControllerDelegate,DailyDareViewControllerDelegate, FirstViewControllerDelegate>
@property (strong, nonatomic) IBOutlet UILabel *welcomeLabel;
@property (strong, nonatomic) IBOutlet UILabel *gamesPlayed;
@property (strong, nonatomic) IBOutlet UILabel *dailyDareState;
@property (strong, nonatomic) IBOutlet UIImageView *smileyView;
@property BOOL acceptedDare;
- (void)recieveDataForGamesPlayed:(int) games andGamesWon:(int)gamesWon;
- (void) recieveDataForDailyeDare:(BOOL)dareAccepted;
- (void)recieveOverallData:(int) gamesToday andWonData:(int) gamesWon;
@end