Cube  Diff

Differences From Artifact [8c83ebcd46]:

To Artifact [558d4dd328]:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "ConsoleLine.h"

@implementation ConsoleLine
+ (instancetype)lineWithText:(OFString *)text outtime:(int)outtime
{
	return [[self alloc] initWithText:text outtime:outtime];
}

- (instancetype)initWithText:(OFString *)text outtime:(int)outtime
{
	self = [super init];

	_text = [text copy];
	_outtime = outtime;

	return self;



|

|


|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "ConsoleLine.h"

@implementation ConsoleLine
+ (instancetype)lineWithText: (OFString *)text outtime: (int)outtime
{
	return [[self alloc] initWithText: text outtime: outtime];
}

- (instancetype)initWithText: (OFString *)text outtime: (int)outtime
{
	self = [super init];

	_text = [text copy];
	_outtime = outtime;

	return self;