mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-05-19 15:50:35 +00:00
18 lines
219 B
Objective-C
18 lines
219 B
Objective-C
//
|
|
// Logging.h
|
|
// ChessKitEngine
|
|
//
|
|
|
|
#ifndef Logging_h
|
|
#define Logging_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface Logging : NSObject
|
|
|
|
+ (void)print: (NSString* _Nullable) message;
|
|
|
|
@end
|
|
|
|
#endif /* Logging_h */
|