aboutsummaryrefslogtreecommitdiff
path: root/src/raylib.h
diff options
context:
space:
mode:
authorvictorfisac <victorfisac@gmail.com>2016-01-04 19:28:52 +0100
committervictorfisac <victorfisac@gmail.com>2016-01-04 19:28:52 +0100
commit0c539cbf320bf50309704ad768b2dfad4cd7a67a (patch)
tree430b94524164208e5a1c856d03db82bb51e2739c /src/raylib.h
parent1656d17b22b362e54710b7164638464e02bd7e5a (diff)
parent70d405b41bcbbd73b9f752f4dc3910100abd1a36 (diff)
downloadraylib-0c539cbf320bf50309704ad768b2dfad4cd7a67a.tar.gz
raylib-0c539cbf320bf50309704ad768b2dfad4cd7a67a.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 99a6979c..f1203537 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -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)
//------------------------------------------------------------------------------------