OSDN Git Service

HMMasterMissionCommandクラスをSwiftで書き換え
[kcd/KCD.git] / KCD / HMCompositCommand.h
1 //
2 //  HMCompositCommand.h
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2014/02/14.
6 //  Copyright (c) 2014年 Hori,Masaki. All rights reserved.
7 //
8
9 #import "HMJSONCommand.h"
10
11 @interface HMCompositCommand : HMJSONCommand
12
13 + (id)compositCommandWithCommands:(HMJSONCommand *)cmd1, ...;
14 - (id)initWithCommands:(HMJSONCommand *)cmd1, ...;
15
16 @end