about summary refs log tree commit diff
path: root/lri-proto/proto/point2f.proto
blob: 726d594d38501eb01db82afff518cead0486c78c (plain)
1
2
3
4
5
6
7
8
syntax = "proto2";

package ltpb;

message Point2F {
    required float x = 1;
    required float y = 2;
}