Files
Towards/modules/protocol/proto/Entity.proto
T

18 lines
255 B
Protocol Buffer
Raw Normal View History

2026-07-18 14:31:15 +02:00
syntax = "proto3";
package mmo;
message EntitySpawnMessage {
uint32 entity_id = 1;
bool is_player = 2;
string name = 3;
}
message EntityDespawnMessage {
uint32 entity_id = 1;
}
2026-07-22 17:34:44 +02:00
message SetControlledEntity {
uint32 entity_id = 1;
}