Debugger UI skeleton.

This commit is contained in:
Ben Vanik
2015-05-22 14:58:56 -07:00
parent 8a5d3526e5
commit 969badd8c3
51 changed files with 1555 additions and 12 deletions

View File

@@ -0,0 +1,27 @@
namespace Xenia.Debugger.Proto;
attribute "priority"; // ?
enum Foo:byte (bit_flags) {
A,
B,
}
struct StructTest {
a:short;
b:byte;
c:Foo;
}
table TableTest {
st:StructTest;
iv:[ubyte];
name:string (required);
id:uint (required, key);
}
union UnionTest {
TableTest,
}
root_type UnionTest;