mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 17:30:15 +00:00
18 lines
342 B
Objective-C
18 lines
342 B
Objective-C
//
|
|
// RKSupportResourceRegistry.h
|
|
// ResKnife
|
|
//
|
|
// Created by Uli Kusterer on Mon Aug 18 2003.
|
|
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
|
|
@interface RKSupportResourceRegistry : NSObject
|
|
{
|
|
}
|
|
+ (void)scanForSupportResources;
|
|
+ (void)scanForSupportResourcesInFolder:(NSString *)path;
|
|
@end
|