4 lines
59 B
Plaintext
4 lines
59 B
Plaintext
|
function vec2(x_=0, y_=0) constructor {
|
||
|
x = x_;
|
||
|
y = y_;
|
||
|
}
|