Pixel-Composer/scripts/complex_function/complex_function.gml
2023-05-16 21:28:16 +02:00

4 lines
90 B
Plaintext

function Complex(_real = 0, _imaginary = 0) constructor {
re = _real;
im = _imaginary;
}