14 lines
120 B
Plaintext
14 lines
120 B
Plaintext
Foo :: struct {
|
|
color : float4;
|
|
}
|
|
|
|
Bar :: struct {
|
|
t : Foo;
|
|
}
|
|
|
|
vertex main :: () {
|
|
f : Foo;
|
|
b : Bar;
|
|
b.t = f;
|
|
}
|