Files
Towards/modules/protocol/proto/Entity.proto
T
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

14 lines
196 B
Protocol Buffer

syntax = "proto3";
package mmo;
message EntitySpawnMessage {
uint32 entity_id = 1;
bool is_player = 2;
string name = 3;
}
message EntityDespawnMessage {
uint32 entity_id = 1;
}