eastern-flames/eastern flames/scripts/vec2/vec2.gml

4 lines
59 B
Plaintext
Raw Normal View History

2022-08-07 21:14:04 +00:00
function vec2(x_=0, y_=0) constructor {
x = x_;
y = y_;
}