More flatbuffers progress

This commit is contained in:
momo5502
2025-04-27 18:24:02 +02:00
parent c639f7e1ce
commit c25133207c
5 changed files with 560 additions and 39 deletions

View File

@@ -0,0 +1,18 @@
namespace Debugger;
table PauseEvent {}
table RunEvent {
singleStep: bool;
}
union Event {
PauseEvent,
RunEvent,
}
table DebugEvent {
event: Event;
}
root_type DebugEvent;