GildedRose-Refactoring-Kata/Tennis/objc/Tennis/TennisGame.m

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