UNPKG

game-library-sdk-mgs

Version:

SDK to integrate games with the game library platform.

16 lines (13 loc) 463 B
// index.js // استيراد الدوال من الملفات الأخرى في المكتبة const { loginUser } = require('./src/auth'); const { launchGame } = require('./src/game'); const { reportGameSession } = require('./src/session'); const { logError } = require('./src/utils'); // تصدير الوظائف لتكون متاحة للمطورين module.exports = { loginUser, launchGame, reportGameSession, logError, };