//
//  XSTracker.h
//  XenonSDK
//
//  Created by SAGESSE on 2019/5/29.
//  Copyright © 2019 SAGESSE. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface XSTracker : NSObject

@property (nonatomic, strong) NSString* session;
@property (nonatomic, assign) NSInteger mask;

@property (nonatomic, class) XSTracker* shared;

- (void)trace:(NSInteger)code;
- (void)trace:(NSInteger)code parameters:(id)parameters;

@end