Skip to content

Contains games used by the peak app. Uses LittleJs game engine.

Notifications You must be signed in to change notification settings

nethical6/peak-mini-games

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

BRYTE: Mini-Games

This repository contains the code for the games in BRYTE. Contributions are welcome! Feel free to open pull requests and submit your custom games for approval.

Sending the Final Score to BRYTE

All games must send their final scores back to BRYTE. You can do this using the following function:

const androidInterfaceExists = typeof AndroidInterface !== 'undefined';

function sendGameOverUpdate(score) {
  if (androidInterfaceExists) {
    AndroidInterface.onGameOver(score);
  }
}

About

Contains games used by the peak app. Uses LittleJs game engine.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published