This commit is contained in:
J. Nick Koston
2025-06-05 17:47:28 +01:00
parent 6d982e76fe
commit 14f147fd1c

View File

@@ -377,13 +377,6 @@ class ProtoService {
// Send the buffer
return this->send_buffer(buffer, message_type);
}
// Batchable version for deferrable messages (state updates, entity info)
// This should be implemented by subclasses that support batching
template<class C> bool send_message_batchable_(const C &msg, uint16_t message_type) {
// Default implementation just sends immediately
return this->send_message_(msg, message_type);
}
};
} // namespace api