mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 09:37:21 +02:00
18 lines
273 B
C++
18 lines
273 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-05.
|
|
//
|
|
|
|
#ifndef SERIALIZEDMESSAGE_H
|
|
#define SERIALIZEDMESSAGE_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Flatbuffers {
|
|
struct SerializedMessage {
|
|
void* data;
|
|
std::size_t size;
|
|
};
|
|
}
|
|
|
|
#endif //SERIALIZEDMESSAGE_H
|