Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions contributing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Contributing

We are running the game from script.js and using other global objects from other scripts,

> - We draw the space using drawSpace.js script.
> - instruction.js script contains the game instruction on how to play.
> - levels.js script contains the logic for generating levels.
> - mainmenu.js script, displays the main menu.

In order to contribute fork the repo and then clone your local copy.

This game is created with only Javascript and Html.
44 changes: 24 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
<!DOCTYPE HTML>
<html>

<head>
<title>Reflexio!</title>
<link rel="shortcut icon" href="images/R1.png">
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>

<body>
<center>
<canvas id="arena">
Canvas tag not supported!
</canvas>
<script src="scripts/drawSpace.js"></script>
<script src="scripts/mainmenu.js"></script>
<script src="scripts/levels.js"></script>
<script src="scripts/script.js"></script>
<script src="scripts/aboutus.js"></script>
<script src="scripts/settings.js"></script>
<script src="scripts/instructions.js"></script>
</center>
</body>
<head>
<title>Reflexio!</title>
<link rel="shortcut icon" href="images/R1.png">
<link rel="stylesheet" type="text/css" href="style.css" />
</head>

<body>
<!-- <center> -->
<div id="center">
<canvas id="arena">
Canvas tag not supported!
</canvas>
</div>

<script src="scripts/drawSpace.js"></script>
<script src="scripts/mainmenu.js"></script>
<script src="scripts/levels.js"></script>
<script src="scripts/script.js"></script>
<script src="scripts/aboutus.js"></script>
<script src="scripts/settings.js"></script>
<script src="scripts/instructions.js"></script>
<!-- </center> -->
</body>

</html>
Loading