18 lines
374 B
Objective-C
18 lines
374 B
Objective-C
//
|
|
// EspagramTestViewController.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 11/8/12.
|
|
// Copyright (c) 2012 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Conjugator.h"
|
|
|
|
@interface EspagramTestViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) id <Conjugator> conjugator;
|
|
@property (nonatomic, strong) NSString * tense;
|
|
|
|
@end
|