sorted files list in objc

This commit is contained in:
2018-04-08 12:28:35 +02:00
parent 23b7788063
commit aef4cc2230
6 changed files with 66 additions and 0 deletions

15
engine/objc_utils.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#ifdef __OBJC__
@interface PathWithModDate : NSObject
@property (strong) NSString *path;
@property (strong) NSDate *modDate;
@end
@interface ObjcUtils : NSObject
@end
#endif