17 lines
159 B
Plaintext
17 lines
159 B
Plaintext
namespace NamespaceA.NamespaceB;
|
|
|
|
table TableInNestedNS
|
|
{
|
|
foo:int;
|
|
}
|
|
|
|
enum EnumInNestedNS:byte
|
|
{
|
|
A, B, C
|
|
}
|
|
|
|
struct StructInNestedNS
|
|
{
|
|
a:int;
|
|
b:int;
|
|
} |