1
0
Fork 0
forked from AbleOS/ableos
ableos/sysdata/programs/sdoom/src/player.hb
2025-02-15 07:13:07 -06:00

9 lines
96 B
Plaintext

Player := struct {
x: i8,
y: i8,
$new := fn(x: i8, y: i8): Self {
return Self.(x, y)
}
}