mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-26 06:34:57 +00:00
6 lines
151 B
Plaintext
Executable File
6 lines
151 B
Plaintext
Executable File
void mx_geompropvalue_integer(string geomprop, int defaultVal, output int out)
|
|
{
|
|
if (getattribute(geomprop, out) == 0)
|
|
out = defaultVal;
|
|
}
|