@series-inc/rundot-game-sdk 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -0
- package/dist/AdsApi-B_d_w_jB.d.ts +1667 -0
- package/dist/chunk-3GKY3LY5.js +78 -0
- package/dist/chunk-3GKY3LY5.js.map +1 -0
- package/dist/chunk-74OSND3B.js +12 -0
- package/dist/chunk-74OSND3B.js.map +1 -0
- package/dist/chunk-RT4CMCVW.js +5300 -0
- package/dist/chunk-RT4CMCVW.js.map +1 -0
- package/dist/core-6DQFSOBL.js +3 -0
- package/dist/core-6DQFSOBL.js.map +1 -0
- package/dist/index.d.ts +1085 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -0
- package/dist/rundot-game-api/index.d.ts +15 -0
- package/dist/rundot-game-api/index.js +2088 -0
- package/dist/rundot-game-api/index.js.map +1 -0
- package/dist/vite/index.css +19 -0
- package/dist/vite/index.css.map +1 -0
- package/dist/vite/index.d.ts +159 -0
- package/dist/vite/index.js +1551 -0
- package/dist/vite/index.js.map +1 -0
- package/dist/webview/index.d.ts +15 -0
- package/dist/webview/index.js +3 -0
- package/dist/webview/index.js.map +1 -0
- package/package.json +72 -0
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# RUN.game SDK API
|
|
2
|
+
|
|
3
|
+
Build connected HTML5 games that integrate deeply with the RUN.game platform. This package provides the client SDK used by hosted games as well as the local mock environment for development.
|
|
4
|
+
|
|
5
|
+
## Highlights
|
|
6
|
+
|
|
7
|
+
- Typed APIs for RUN.game platform services (simulation, rooms, analytics, ads, and more)
|
|
8
|
+
- Host-aware tooling including lifecycle hooks, safe-area utilities, and asset loading helpers
|
|
9
|
+
|
|
10
|
+
## Quick Start
|
|
11
|
+
|
|
12
|
+
### Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install @series-inc/rundot-game-sdk@latest
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Initialize
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { default as RundotGameAPI } from '@series-inc/rundot-game-sdk/api'
|
|
22
|
+
|
|
23
|
+
// Initialize the API
|
|
24
|
+
await RundotGameAPI.initializeAsync()
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Documentation
|
|
28
|
+
|
|
29
|
+
The complete RUN.game SDK manuals live on [Run.game Docs](https://series-1.gitbook.io/getreel-docs). Start there for setup guides, API references, tutorials, and best practices.
|
|
30
|
+
|
|
31
|
+
## Support & Links
|
|
32
|
+
|
|
33
|
+
- [Join our Discord!](https://discord.gg/NcjhKQHx)
|