mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
19 lines
434 B
Objective-C
19 lines
434 B
Objective-C
//
|
|
// Created by Stefan on 5/31/13.
|
|
// Copyright (c) 2013 Stefan van den Oord. All rights reserved.
|
|
//
|
|
// To change the template use AppCode | Preferences | File Templates.
|
|
//
|
|
|
|
|
|
#import "TennisGame3.h"
|
|
#import "TennisGame.h"
|
|
|
|
|
|
@implementation TennisGame
|
|
|
|
- (id)initWithPlayer1:(NSString *)player1 player2:(NSString *)player2 { return [super init]; }
|
|
- (void)wonPoint:(NSString *)playerName {}
|
|
- (NSString *)score { return nil; }
|
|
|
|
@end |