about summary refs log tree commit diff stats
path: root/data/maps/the_liberated/rooms
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-08-30 18:35:21 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-08-30 18:35:21 -0400
commitd64ce785a7f1ca4e26b85499a9cd310ed80fb80c (patch)
treef21741013380721742b57d158516c68841d44f69 /data/maps/the_liberated/rooms
parent5a89a4baf8984d0d4dab3799f8177f8e293b7317 (diff)
downloadlingo2-archipelago-d64ce785a7f1ca4e26b85499a9cd310ed80fb80c.tar.gz
lingo2-archipelago-d64ce785a7f1ca4e26b85499a9cd310ed80fb80c.tar.bz2
lingo2-archipelago-d64ce785a7f1ca4e26b85499a9cd310ed80fb80c.zip
[Data] Small tweaks
Diffstat (limited to 'data/maps/the_liberated/rooms')
0 files changed, 0 insertions, 0 deletions
{ color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
//
//  TestFlight.h
//  libTestFlight
//
//  Created by Colin Humber on 8/25/10.
//  Copyright 2010 23 Divide Apps. All rights reserved.

#import <Foundation/Foundation.h>

@interface TestFlight : NSObject {
    
}

/**
 Add custom environment information
 If you want to track a user name from your application you can add it here
 */
+ (void)addCustomEnvironmentInformation:(NSString *)information forKey:(NSString*)key;

/**
 Starts a TestFlight session
 */
+ (void)takeOff:(NSString *)teamToken;

/**
 Sets custom options
 Option                      Accepted Values                 Description
 reinstallCrashHandlers      [NSNumber numberWithBool:YES]   Reinstalls crash handlers, to be used if a third party 
 library installs crash handlers overtop of the TestFlight Crash Handlers
 */
+ (void)setOptions:(NSDictionary*)options;

/**
 Track when a user has passed a checkpoint after the flight has taken off. Eg. passed level 1, posted high score
 */
+ (void)passCheckpoint:(NSString *)checkpointName;

/**
 Opens a feeback window that is not attached to a checkpoint
 */
+ (void)openFeedbackView;

@end