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
+30
View File
@@ -0,0 +1,30 @@
//
// ABTestManager.h
// RobloxMobile
//
// Created by Kyler Mulherin on 3/29/15.
// Copyright (c) 2015 ROBLOX. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "RobloxData.h"
@interface ABTestManager : NSObject
//static instance
+(id)sharedInstance;
-(void) fetchExperimentsForBrowserTracker;
-(void) fetchExperimentsForUser:(NSNumber*)userId;
- (void) removeStoredExperiments;
//Accessors
//Enrollment tests
-(BOOL) IsPartOfTestMobileGuestMode;
-(BOOL) IsPartOfTestGuestFlavorMode;
//App Behavioral tests
-(BOOL) IsInTestMobileGuestMode;
-(BOOL) IsInTestGuestFlavorMode;
@end