user_storage.proto 826 B

123456789101112131415161718192021222324252627282930313233
  1. syntax = "proto2";
  2. message UserStorage {
  3. repeated Attributes attributes = 2;
  4. }
  5. message Attributes {
  6. optional GameSettings game_settings = 22;
  7. optional GarageItemLastSelected garage_last_selected = 23;
  8. optional SpecialEventSeen special_event_seen = 25;
  9. }
  10. message GameSettings {
  11. optional float f2 = 2;
  12. optional int32 minimal_leaderboards = 3;
  13. optional int32 power_meter_slot0 = 4;
  14. optional int32 power_meter_slot1 = 5;
  15. optional int32 power_meter_slot2 = 6;
  16. optional int32 power_meter_slot3 = 7;
  17. optional int32 climb_graph_sensitivity = 9;
  18. optional float screen_shake_scale = 10;
  19. }
  20. message GarageItemLastSelected {
  21. optional string signature = 1;
  22. optional uint64 time = 2;
  23. }
  24. message SpecialEventSeen {
  25. optional string signature = 1;
  26. optional uint64 time = 2;
  27. }