move dirs init for iOS and OSX

This commit is contained in:
2019-07-13 16:49:13 +02:00
parent d7386cdfa9
commit 2e5ea079c8
6 changed files with 111 additions and 110 deletions

View File

@@ -31,3 +31,12 @@
- (std::string)clipboard_get_string;
- (bool)clipboard_set_string:(const std::string&)s;
@end
@interface AppOSX : NSApplication<NSApplicationDelegate>
{
Window* window;
Controller* controller;
View* view;
}
- (void)init_dirs;
@end