diff options
| author | Ray <[email protected]> | 2018-11-09 23:09:02 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2018-11-09 23:09:02 +0100 |
| commit | 5167f78d5f64dfe2a4110102a0a7c1ca197d7c75 (patch) | |
| tree | 5472620670400559918fcd8e5ff123a99fd33d11 /src/raylib.h | |
| parent | 6428317739e1fe978e00527c2d2ea87c757a96db (diff) | |
| download | raylib-5167f78d5f64dfe2a4110102a0a7c1ca197d7c75.tar.gz raylib-5167f78d5f64dfe2a4110102a0a7c1ca197d7c75.zip | |
ADDED: OpenURL()
Corrected bug on ImageDrawRectangleLines()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h index aba4e108..ef470389 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -887,6 +887,8 @@ RLAPI long GetFileModTime(const char *fileName); // Get file mo RLAPI void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position) RLAPI int StorageLoadValue(int position); // Load integer value from storage file (from defined position) +RLAPI void OpenURL(const char *url); // Open URL with default system browser (if available) + //------------------------------------------------------------------------------------ // Input Handling Functions (Module: core) //------------------------------------------------------------------------------------ |
