setting type was in old style
This commit is contained in:
parent
aa8b861538
commit
47edc8909a
|
@ -1,16 +1,16 @@
|
||||||
type :Vec {
|
set :Vec to type {
|
||||||
f32 :x,
|
f32 :x,
|
||||||
f32 :y,
|
f32 :y,
|
||||||
f32 :z,
|
f32 :z,
|
||||||
};
|
};
|
||||||
|
|
||||||
type :Color {
|
set :Color to type {
|
||||||
i8 :r,
|
i8 :r,
|
||||||
i8 :g,
|
i8 :g,
|
||||||
i8 :b,
|
i8 :b,
|
||||||
};
|
};
|
||||||
|
|
||||||
type :Player {
|
set :Player to type {
|
||||||
str :username,
|
str :username,
|
||||||
Vec :pos,
|
Vec :pos,
|
||||||
Color :color,
|
Color :color,
|
||||||
|
|
Loading…
Reference in New Issue