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 ```c
typedef struct typedef struct
{ {
double StartTime; double StartTime; // start time (seconds)
double Lifetime; double Lifetime; // lifetime (seconds)
}Timer; }Timer;
void StartTimer(Timer* timer, double lifetime) void StartTimer(Timer* timer, double lifetime)