mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-15 10:19:18 -05:00
Added functionality: Storage values
Two new functions added to save/load values as binary data: - StorageSaveValue() - StorageLoadValue()
This commit is contained in:
@ -540,6 +540,9 @@ bool IsFileDropped(void); // Check if a file h
|
||||
char **GetDroppedFiles(int *count); // Retrieve dropped files into window
|
||||
void ClearDroppedFiles(void); // Clear dropped files paths buffer
|
||||
|
||||
void StorageSaveValue(int position, int value); // Storage save integer value (to defined position)
|
||||
int StorageLoadValue(int position); // Storage load integer value (from defined position)
|
||||
|
||||
//------------------------------------------------------------------------------------
|
||||
// Input Handling Functions (Module: core)
|
||||
//------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user