diff options
| author | Fuwn <[email protected]> | 2024-06-12 07:04:13 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-12 07:04:13 -0700 |
| commit | 5881e785ace908f669f0d3136bdbbdfe5b500bdc (patch) | |
| tree | 996d8e74567e7f6fa2fe6624b68ea177b5cccc90 /object_id.proto | |
| parent | refactor: use snake case (style guide) (diff) | |
| download | worldserver-protobufs-5881e785ace908f669f0d3136bdbbdfe5b500bdc.tar.xz worldserver-protobufs-5881e785ace908f669f0d3136bdbbdfe5b500bdc.zip | |
refactor: rename ObjID
Diffstat (limited to 'object_id.proto')
| -rw-r--r-- | object_id.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/object_id.proto b/object_id.proto new file mode 100644 index 0000000..0709e7b --- /dev/null +++ b/object_id.proto @@ -0,0 +1,8 @@ +syntax = "proto3"; + +package whirl; + +message ObjectID { + int32 short_object_id = 1; + string long_object_id = 2; +}
\ No newline at end of file |