23 lines
528 B
Objective-C
23 lines
528 B
Objective-C
//
|
|
// EditMonsterViewController.h
|
|
// MonsterCards
|
|
//
|
|
// Created by Tom Hicks on 9/8/20.
|
|
// Copyright © 2020 Tom Hicks. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Monster.h"
|
|
#import "EditableShortStringTableViewCell.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface EditMonsterViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, EditableShortStringDelegate>
|
|
|
|
@property Monster* originalMonster;
|
|
@property (weak, nonatomic) IBOutlet UITableView *monsterTableView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|