Skip to content
sean_codes edited this page Jan 6, 2017 · 13 revisions

#Basic Setup

To get started quickly simply grab the engine.zip file and paste it into a folder on your web server. I will explain the basic files below. Once the engine is more complete I will wrap it inside a web IDE so it will be possible to develop through either this website and export or develop directly on your web server.

The main file is three main parts. The Style Sheet, the loader/compiler PHP script, and the JavaScript init function.

<html>
   <head>
       <link rel="stylesheet" type="text/css" href="css.css">
   </head>
   <body>
       <div id='view'></div>
       <script>
           cs.init();
       </script>
   </body>
<html>

After the init function is where we will create objects or load maps.

Clone this wiki locally