1// State of a tile.
2syntax = "proto3";
3
4package androidx.wear.tiles.testing.proto;
5
6
7option java_package = "androidx.wear.tiles.testing.proto";
8option java_outer_classname = "StateProto";
9
10// State information.
11message State {
12  // The ID of the clickable that was last clicked.
13  string last_clickable_id = 1;
14}
15