Ignore:
Timestamp:
2010-05-28 07:39:52 (2 years ago)
Author:
kpoole
Message:

Episode 5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/OpenFeint/OpenFeintSettings.h

    r22 r26  
    122122//////////////////////////////////////////////////////////// 
    123123extern const NSString* OpenFeintSettingPromptToPostAchievementUnlock; 
     124 
     125//////////////////////////////////////////////////////////// 
     126/// 
     127/// @type       NSString 
     128/// @default    nil 
     129/// @behavior   If this setting is present, then OpenFeint will attempt to load nibs with the given suffix 
     130///             before attempting to load nibs with its default suffix ("Of").  You can use this if you want 
     131///             to override specific controller nibs within OpenFeint with your own. 
     132/// 
     133//////////////////////////////////////////////////////////// 
     134extern const NSString* OpenFeintSettingOverrideSuffixString; 
     135 
     136//////////////////////////////////////////////////////////// 
     137/// 
     138/// @type       NSString 
     139/// @default    nil 
     140/// @behavior   If this setting is present, then OpenFeint will attempt to instantiate classes with the given 
     141///             prefix before attempting to instantiate classes with its default prefix ("OF").  You can use 
     142///             this if you want to override specific UI classes within OpenFeint with your own. 
     143/// 
     144//////////////////////////////////////////////////////////// 
     145extern const NSString* OpenFeintSettingOverrideClassNamePrefixString; 
     146 
     147//////////////////////////////////////////////////////////// 
     148/// 
     149/// @type       NSString 
     150/// @default    nil 
     151/// @behavior   If this setting is present and set to YES blobs will not be compressed before uploaded to the cloud.  
     152///             It is recomended to use this only if your data is already in a very compact format that will not compress. 
     153//              To find out how well your data compresses pass in the OpenFeintSettingOutputCloudStorageCompressionRatio setting. 
     154/// 
     155///             NOTE: This flag applies to ALL of your cloud storage. You can not selectively use compression. If you're not sure 
     156///                   if you should use compression or not then it's safest to leave it enabled 
     157/// 
     158//////////////////////////////////////////////////////////// 
     159extern const NSString* OpenFeintSettingDisableCloudStorageCompression; 
     160 
     161//////////////////////////////////////////////////////////// 
     162/// 
     163/// @type       NSString 
     164/// @default    nil 
     165/// @behavior   If this setting is present and set to YES then OpenFeint will output the compression ratio of all compressed blobs to the console 
     166/// 
     167//////////////////////////////////////////////////////////// 
     168extern const NSString* OpenFeintSettingOutputCloudStorageCompressionRatio; 
     169 
Note: See TracChangeset for help on using the changeset viewer.