Advertisement
Guest User

Untitled

a guest
May 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. // Class pointed to by "theTelemetry"
  2. // Do not instanciate directly
  3. import class CR4TelemetryScriptProxy extends CObject
  4. {
  5. import final function LogWithName( eventType : ER4TelemetryEvents );
  6. import final function LogWithLabel( eventType : ER4TelemetryEvents, label : String );
  7. import final function LogWithValue( eventType : ER4TelemetryEvents, value : int );
  8. import final function LogWithValueStr( eventType : ER4TelemetryEvents, value : String );
  9.  
  10. import final function LogWithLabelAndValue( eventType : ER4TelemetryEvents, label : String, value : int );
  11. import final function LogWithLabelAndValueStr( eventType : ER4TelemetryEvents, label : String, value : String );
  12.  
  13. import final function SetCommonStatFlt( statType: ER4CommonStats, value : float );
  14. import final function SetCommonStatI32( statType: ER4CommonStats, value : int );
  15.  
  16. import final function SetGameProgress( value : float );
  17.  
  18. import final function AddSessionTag( tag : String );
  19. import final function RemoveSessionTag( tag : String );
  20.  
  21. import final function XDPPrintUserStats( statisticName : String );
  22. import final function XDPPrintUserAchievement( achievementName : String );
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement