user_storage.proto 726 B

12345678910111213141516171819202122232425262728293031
  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 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. }
  18. message GarageItemLastSelected {
  19. optional string signature = 1;
  20. optional uint64 time = 2;
  21. }
  22. message SpecialEventSeen {
  23. optional string signature = 1;
  24. optional uint64 time = 2;
  25. }