forked from AbleOS/ableos
9 lines
96 B
Plaintext
9 lines
96 B
Plaintext
|
|
Player := struct {
|
|
x: i8,
|
|
y: i8,
|
|
|
|
$new := fn(x: i8, y: i8): Self {
|
|
return Self.(x, y)
|
|
}
|
|
} |