mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-01 12:11:22 +00:00
11 lines
157 B
C++
11 lines
157 B
C++
#include "CTimer.h"
|
|
#include <cmath>
|
|
|
|
namespace AnimUtil
|
|
{
|
|
float SecondsMod900()
|
|
{
|
|
return fmod((float) CTimer::GlobalTime(), 900.f);
|
|
}
|
|
}
|