20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
for k,v in pairs(starlit.world.stats) do
statStructFields[k] = v.srzType or (
(v.base == true or v.base > 0) and T.s16 or T.u16
)
end
starlit.store.compilerJob = G.struct {
schematic = T.str;
progress = T.clamp;
}
starlit.store.persona = G.struct {
name = T.str;
species = T.str;
speciesVariant = T.str;
background = T.str;
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
for k,v in pairs(starlit.world.stats) do
statStructFields[k] = v.srzType or (
(v.base == true or v.base > 0) and T.s16 or T.u16
)
end
starlit.store.compilerJob = G.struct {
schematic = T.str;
cyclesLeft = T.u64;
timeLeft = T.decimal;
}
starlit.store.persona = G.struct {
name = T.str;
species = T.str;
speciesVariant = T.str;
background = T.str;
|