aboutsummaryrefslogtreecommitdiffstats
path: root/WorldSettingsController.h
diff options
context:
space:
mode:
Diffstat (limited to 'WorldSettingsController.h')
-rw-r--r--WorldSettingsController.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/WorldSettingsController.h b/WorldSettingsController.h
new file mode 100644
index 0000000..67489ec
--- /dev/null
+++ b/WorldSettingsController.h
@@ -0,0 +1,28 @@
+//
+// WorldSettingsController.h
+// Moxie
+//
+// Created by Brian Cully on Thu Jan 01 2004.
+// Copyright (c) 2004 Brian Cully. All rights reserved.
+//
+
+#import "MxWorldSettings.h"
+
+@interface WorldSettingsController : NSWindowController
+{
+ IBOutlet NSObjectController *theSettingsController;
+ IBOutlet NSTabView *theTabView;
+ IBOutlet NSTabViewItem *theHostSettingsTab;
+}
++ (WorldSettingsController *)sharedController;
+
+- (IBAction)saveSettingsAsDefault: (id)sender;
+- (IBAction)openLogDirectory: (id)sender;
+
+- (void)showHostSettingsTab;
+@end
+
+@interface WorldSettingsController (Accessors)
+- (MxWorldSettings *)settings;
+- (void)setSettings: (MxWorldSettings *)someSettings;
+@end \ No newline at end of file