-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTour.m
53 lines (43 loc) · 772 Bytes
/
Tour.m
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// Tour.m
// Monster Troc 2
//
// Created by Thibault Dardinier on 22/09/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "Tour.h"
@implementation Tour
@synthesize pause, joueur, num, type, ID;
- (id)init
{
self = [super init];
pause = 0;
joueur = 1;
type = RIEN;
num = 1;
ID = 0;
return self;
}
- (void)finDuTour
{
if (joueur == 1) {
joueur = 2;
}
else if(joueur == 2)
{
joueur = 1;
num++;
}
type = RIEN;
ID = 0;
}
- (void)reprendre
{
pause = 0;
}
- (void)pauseDe:(int)temps
{
pause = 1;
NSTimer *Timer = [NSTimer scheduledTimerWithTimeInterval:temps target:self selector:@selector(reprendre) userInfo:nil repeats:NO];
}
@end