From 7131c2be1c493106437371ca51c22347ee2633b5 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 3 Jun 2021 23:37:58 +0200 Subject: [PATCH] Updated raylib syntax analysis (markdown) --- raylib-syntax-analysis.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/raylib-syntax-analysis.md b/raylib-syntax-analysis.md index e0dbb7d..80e1a64 100644 --- a/raylib-syntax-analysis.md +++ b/raylib-syntax-analysis.md @@ -37,16 +37,16 @@ Most of the functions of the library go into this first group **(359 functions)* pattern | function format | API count | examples :--: | :----- | :---: | :---------- -01 | `void Init*()` | 3 | `InitWindow()`, `InitAudioDevice()`, `InitAudioStream()` -02 | `void Close*()` | 3 | `CloseWindow()`, `CloseAudioDevice()`, `CloseAudioStream()` +01 | `void Init*()` | 2 | `InitWindow()`, `InitAudioDevice()` +02 | `void Close*()` | 2 | `CloseWindow()`, `CloseAudioDevice()` 03 | `void Begin*()` | 8 | `BeginDrawing()`, `BeginBlendMode()` 04 | `void End*()` | 8 | `EndDrawing()`, `EndBlendMode()` 05 | `TYPE Get*()` | **79** | `GetKeyPressed()`, `GetMouseX()`, `GetRayCollision*()` 06 | `void Set*()` | **46** | `SetWindowTitle()`, `SetTargetFPS()`, `SetMouseScale()` 07 | `bool Is*()` | **33** | `IsKeyPressed()`, `IsGamepadAvailable()`, `IsSoundPlaying()` 08 | `TYPE Gen*()` | 20 | `GenImage*()`, `GenMesh*()` -09 | `TYPE Load*()` | **33** | `LoadImage*()`, `LoadTexture*()`, `LoadSound*()` -10 | `void Unload*()` | 21 | `UnloadImage()`, `UnloadTexture()`, `UnloadSound()` +09 | `TYPE Load*()` | **34** | `LoadImage*()`, `LoadTexture*()`, `LoadSound*()` +10 | `void Unload*()` | 22 | `UnloadImage()`, `UnloadTexture()`, `UnloadSound()` 11 | `void Update*(, *)` | 8 | `UpdateTexture()`, `UpdateCamera()` 12 | `bool Save*()` | 3 | `SaveFileData()`, `SaveFileText()`, `SaveStorageValue()` 13 | `bool Export*()` | 5 | `ExportImage()`, `ExportImageAsCode()`, `ExportMesh()`, `ExportWave()`, `ExportWaveAsCode()`