mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-16 10:20:30 +00:00
18 lines
352 B
Objective-C
18 lines
352 B
Objective-C
//
|
|
// WNUtils.h
|
|
// Wesnoth Scenario Editor
|
|
//
|
|
// Created by Marcus on Sun Apr 25 2004.
|
|
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface WNUtils : NSObject {
|
|
|
|
}
|
|
+(NSString *)replaceSpaces: (NSString *)source;
|
|
+(BOOL)writeImage:(NSImage *)startImage toPNGFile:(NSString *)pngFile;
|
|
@end
|