Cube  Diff

Differences From Artifact [254356cb16]:

To Artifact [5f400a60e2]:


21
22
23
24
25
26
27
28
29


30
31
32
33


34
35
36
37
38


39
40
41
42
43
44
45
21
22
23
24
25
26
27


28
29
30
31


32
33
34
35
36


37
38
39
40
41
42
43
44
45







-
-
+
+


-
-
+
+



-
-
+
+








@implementation Command
{
	id _block;
}

+ (instancetype)commandWithName: (OFString *)name
                 argumentsTypes: (int)argumentsTypes
                          block: (id)block
		 argumentsTypes: (int)argumentsTypes
			  block: (id)block
{
	return [[self alloc] initWithName: name
	                   argumentsTypes: argumentsTypes
	                            block: block];
			   argumentsTypes: argumentsTypes
				    block: block];
}

- (instancetype)initWithName: (OFString *)name
              argumentsTypes: (int)argumentsTypes
                       block: (id)block
	      argumentsTypes: (int)argumentsTypes
		       block: (id)block
{
	self = [super initWithName: name];

	_argumentsTypes = argumentsTypes;
	_block = block;

	return self;