mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
27 lines
438 B
Objective-C
27 lines
438 B
Objective-C
//
|
|
// CMCrashReporterGlobal.h
|
|
// CMCrashReporter-App
|
|
//
|
|
// Created by Jelle De Laender on 20/01/08.
|
|
// Copyright 2008 CodingMammoth. All rights reserved.
|
|
// Copyright 2010 CodingMammoth. Revision. All rights reserved.
|
|
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface CMCrashReporterGlobal : NSObject {
|
|
|
|
}
|
|
|
|
+ (NSString *)appName;
|
|
+ (NSString *)version;
|
|
|
|
+ (BOOL)checkOnCrashes;
|
|
|
|
+ (NSString *)osVersion;
|
|
|
|
+ (int)numberOfMaximumReports;
|
|
@end
|