Files
caliverse_server/Protocol/proto/Game_Protocol_Define.proto
2025-05-01 07:20:41 +09:00

27 lines
585 B
Protocol Buffer

syntax = "proto3";
import "Define_Common.proto";
import "Define_Result.proto";
import "Game_Define.proto";
//===============================================================================================
// 본 파일은 게임 프로토콜 상세 속성을 정의 한다.
// 일단 MS5 에는 클라이언트 테스트 목적으로 1쌍(REQ, ACK, NTF) 프로토콜만 추가해 본다. - kangms
//===============================================================================================
message C2GS_REQ_PACKET
{
int32 id = 1;
}
message GS2C_ACK_PACKET
{
int32 id = 1;
}
message GC2C_NTF_PACKET
{
int32 id = 1;
}