UNPKG

inertialrush-game-test

Version:

This package enables the integration of the Inertial Rush game into any React application, making it easy to showcase the game.

39 lines (38 loc) 1.78 kB
import React from "react"; import { GameProps } from "./InertialRushGame.types"; import "./game/css/animate.min.css"; import "./game/css/bootstrap-reboot.min.css"; import "./game/css/bootstrap-grid.min.css"; import "./game/css/swiper-bundle.min.css"; import "./game/css/multi.css"; import "./game/css/fonts.css"; import "./index.js"; import "./game/libs/postprocessing/EffectComposer.js"; import "./game/libs/postprocessing/RenderPass.js"; import "./game/libs/postprocessing/BloomPass.js"; import "./game/libs/postprocessing/ShaderPass.js"; import "./game/libs/postprocessing/MaskPass.js"; import "./game/connection.js"; import "./game/bkcore.coffee/controllers/TouchController.js"; import "./game/bkcore.coffee/controllers/OrientationController.js"; import "./game/bkcore.coffee/controllers/GamepadController.js"; import "./game/bkcore.coffee/Timer.js"; import "./game/bkcore.coffee/ImageData.js"; import "./game/bkcore.coffee/Utils.js"; import "./game/bkcore/threejs/RenderManager.js"; import "./game/bkcore/threejs/Shaders.js"; import "./game/bkcore/threejs/Particles.js"; import "./game/bkcore/threejs/Loader.js"; import "./game/bkcore/Audio.js"; import "./game/bkcore/hexgl/HUD.js"; import "./game/bkcore/hexgl/RaceData.js"; import "./game/bkcore/hexgl/ShipControls.js"; import "./game/bkcore/hexgl/FirstAidKitPlusControl.js"; import "./game/bkcore/hexgl/ShipEffects.js"; import "./game/bkcore/hexgl/CameraChase.js"; import "./game/bkcore/hexgl/Gameplay.js"; import "./game/bkcore/hexgl/tracks/Cityscape.js"; import "./game/bkcore/hexgl/HexGL.js"; import "./game/launch.js"; declare const InertialRushGame: ({ signAndSubmitTransaction, setConnectModalOpen, accountAddress, }: GameProps) => React.JSX.Element; export default InertialRushGame;