You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a header-only library. To use it, define `RAYLIB_PHYSFS_IMPLEMENTATION` in one `.c` source file before including [`raylib-physfs.h`](include/raylib-physfs.h). You will also have to link the raylib dependencies.
18
+
This is a header-only library. To use it, define `RAYLIB_PHYSFS_IMPLEMENTATION` in one `.c` source file before including [`raylib-physfs.h`](include/raylib-physfs.h). You will also have to link the raylib & physfs dependencies.
19
19
20
20
### Example
21
21
22
22
```c
23
23
#defineRAYLIB_PHYSFS_IMPLEMENTATION
24
-
#definePHYSFS_SUPPORTS_ONLY_ZIP
25
24
#include"raylib-physfs.h"
26
25
27
26
intmain() {
@@ -70,11 +69,8 @@ const char* GetPerfDirectory(const char *org, const char *app); // Get the user'
70
69
71
70
### Defines
72
71
73
-
Add these defines to help shape the behaviour of raylib-physfs...
72
+
Have a look at [Cmake config](CMakeLists.txt) to see how to define different things that change the behavior of physfs, raylib, and raylib-physfs.
74
73
75
-
- `RAYLIB_PHYSFS_IMPLEMENTATION` Define this in one of your `.c`/`.cpp` files prior to including *raylib-physfs.h*
76
-
- `RAYLIB_PHYSFS_STATIC` Use [`static`](https://en.wikipedia.org/wiki/Static_(keyword)) function definitions
77
-
- `PHYSFS_SUPPORTS_ONLY_ZIP` Only support .zip archives, rather than all the available ones.
0 commit comments