1//  PXEraserTool.m
2//  Pixen
3//
4//  Created by Joe Osborn on Tue Oct 07 2003.
5//  Copyright (c) 2003 Open Sword Group. All rights reserved.
6//
7
8#import "PXEraserTool.h"
9
10
11@implementation PXEraserTool
12
13- (NSString *)name
14{
15	return NSLocalizedString(@"ERASER_NAME", @"Eraser Tool");
16}
17
18- actionName
19{
20    return NSLocalizedString(@"ERASER_ACTION", @"Erasure");
21}
22
23- color
24{
25    return [NSColor clearColor];
26}
27
28@end
29