完善了protobuf协议文件

This commit is contained in:
huangxiaolei
2022-12-09 20:34:05 +08:00
parent 5e8d457344
commit 50de81588b
3148 changed files with 1314 additions and 584389 deletions

View File

@@ -0,0 +1,25 @@
// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa.
// Copyright (C) 2022 Sorapointa Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
syntax = "proto3";
package proto;
option go_package = "./;proto";
message AbilityActionSetBulletTrackTarget {
uint32 chased_entity_id = 1;
uint32 lock_point_index = 2;
}