This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// RobloxGoogleAnalytics.h
// RobloxMobile
//
// Created by Ganesh Agrawal on 11/13/12.
// Copyright (c) 2012 ROBLOX. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface RobloxGoogleAnalytics : NSObject
{}
+(void) startup;
+(void) setPageViewTracking:(NSString*)url;
+(void) setEventTracking:(NSString*)category withAction:(NSString*)action withValue:(NSInteger)value;
+(void) setEventTracking:(NSString*)category withAction:(NSString*)action withLabel:(NSString*)label withValue:(NSInteger)value;
+(void) setCustomVariableWithLabel:(NSString*)label withValue:(NSString*)value;
// debug counters
+(void) debugCountersPrint;
+(void) debugCounterIncrement:(NSString *)label;
@end