setting type was in old style

This commit is contained in:
zongor 2025-01-26 10:11:13 -05:00
parent aa8b861538
commit 47edc8909a
1 changed files with 3 additions and 3 deletions

View File

@ -1,16 +1,16 @@
type :Vec {
set :Vec to type {
f32 :x,
f32 :y,
f32 :z,
};
type :Color {
set :Color to type {
i8 :r,
i8 :g,
i8 :b,
};
type :Player {
set :Player to type {
str :username,
Vec :pos,
Color :color,