13 lines
130 B
Plaintext
13 lines
130 B
Plaintext
enum Color:byte { red, green, blue }
|
|
|
|
struct Vec3 {
|
|
x:float;
|
|
y:float;
|
|
}
|
|
|
|
table Monster {
|
|
pos:Vec3;
|
|
color:Color = Blue;
|
|
}
|
|
|