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
The generated project and build artifacts can be found inside the `build` folder. Packaged output (library + headers) is placed in `build/package/`.
46
63
47
64
Lib Dependencies
48
65
----------------
@@ -59,23 +76,54 @@ Lib Dependencies
59
76
Usage of the SDK
60
77
----------------
61
78
62
-
Remember to include the GameAnalytics header file wherever you are using the SDK:
79
+
### Static library (C++ API)
80
+
81
+
Include the GameAnalytics header file wherever you are using the SDK:
63
82
64
83
```c++
65
84
#include"GameAnalytics/GameAnalytics.h"
66
85
```
67
86
87
+
### Shared library / Unity native plugin (C API)
88
+
89
+
When building with `--shared` / `-DGA_SHARED_LIB=ON`, the SDK exposes a C API via `GameAnalyticsExtern.h`. This is the intended integration path for Unity (P/Invoke) and other managed runtimes.
0 commit comments