Updated Frequently asked Questions Common Questions (markdown)

master
Jeffery Myers 3 years ago
parent
commit
cb0544d9ba
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Frequently-asked-Questions--Common-Questions.md

+ 2
- 2
Frequently-asked-Questions--Common-Questions.md

@ -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)

Loading…
Cancel
Save