23 lines
276 B
Objective-C
23 lines
276 B
Objective-C
//
|
|
// J.m
|
|
// J
|
|
//
|
|
// Created by Joshua Moerman on 8/28/11.
|
|
// Copyright 2011 Vadovas. All rights reserved.
|
|
//
|
|
|
|
#import "J.h"
|
|
|
|
@implementation J
|
|
|
|
- (id)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
// Initialization code here.
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|