mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-25 06:04:57 +00:00
7 lines
136 B
Plaintext
Executable File
7 lines
136 B
Plaintext
Executable File
void mx_time_float(float fps, output float result)
|
|
{
|
|
float frame;
|
|
getattribute("frame", frame);
|
|
result = frame / fps;
|
|
}
|