Fixing project references due to the previous upgrade from .xcode to .xcodeproj.
[ITMac.git] / ITPixmapListMacResource.m
1 #import "ITPixmapListMacResource.h"
2
3 @implementation ITPixmapListMacResource
4
5 + (NSArray *)supportedResourceTypes {
6         return [NSArray arrayWithObject:[NSString stringWithFourCharCode:'pxm#']];
7 }
8
9 - (Class)nativeRepresentationClass {
10         return [NSArray class];
11 }
12
13 - (id)nativeRepresentation {
14         return nil;
15 }
16
17 @end