| 757 | void CloseGameScript(); |
| 758 | |
| 759 | float GetFPS() { |
| 760 | if (Frametime == 0.0f) { |
| 761 | Frametime = 0.1f; |
| 762 | } |
| 763 | return 1.0 / Frametime; |
| 764 | } |
| 765 | |
| 766 | /////////////////////////////////////////////////////////////////////////////// |
| 767 | // Game Execution |
no outgoing calls
no test coverage detected