Updated Frequently asked Questions Common Questions (markdown)

Jeffery Myers
2022-04-23 14:45:05 -07:00
parent 93cc954286
commit cb0544d9ba

@ -21,8 +21,8 @@ Raylib has no built in timer system. You are expected to keep track of time in y
```c
typedef struct
{
double StartTime;
double Lifetime;
double StartTime; // start time (seconds)
double Lifetime; // lifetime (seconds)
}Timer;
void StartTimer(Timer* timer, double lifetime)