OSDN Git Service

UIを調整
[kcd/KCD.git] / KCD / HMClearItemGetComand.m
1 //
2 //  HMClearItemGetComand.m
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2015/04/22.
6 //  Copyright (c) 2015年 Hori,Masaki. All rights reserved.
7 //
8
9 #import "HMClearItemGetComand.h"
10
11 #import "HMUpdateQuestListCommand.h"
12
13
14 @implementation HMClearItemGetComand
15 + (void)load
16 {
17         static dispatch_once_t onceToken;
18         dispatch_once(&onceToken, ^{
19                 [HMJSONCommand registerClass:self];
20         });
21 }
22
23 + (BOOL)canExcuteAPI:(NSString *)api
24 {
25         return [api isEqualToString:@"/kcsapi/api_req_quest/clearitemget"];
26 }
27
28 - (id)init
29 {
30         self = [super initWithCommands:
31 //                      [HMMemberMaterialCommand new],
32                         [HMUpdateQuestListCommand new],
33                         nil];
34         return self;
35 }
36 @end