Shortcut.proto 183 B

12345678910
  1. syntax = "proto3";
  2. package PixiEditor.Commands;
  3. option csharp_namespace = "PixiEditor.Extensions.CommonApi.Commands";
  4. message Shortcut
  5. {
  6. int32 Key = 1;
  7. int32 Modifiers = 2;
  8. }