mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-03 19:19:29 +00:00
19 lines
343 B
Objective-C
19 lines
343 B
Objective-C
//
|
|
// main.m
|
|
// Wesnoth Scenario Editor
|
|
//
|
|
// Created by Marcus Phillips on Mon Mar 22 2004.
|
|
// Copyright (c) 2004 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "WNCampaign.h"
|
|
|
|
@interface WNApplication : NSApplication
|
|
@end
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
return NSApplicationMain(argc, argv);
|
|
}
|