https://github.com/paratron/spacebattles
https://github.com/paratron/spacebattles
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/paratron/spacebattles
- Owner: Paratron
- Created: 2012-05-02T19:06:24.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-15T08:46:35.000Z (over 13 years ago)
- Last Synced: 2024-10-19T01:18:38.237Z (about 1 year ago)
- Language: JavaScript
- Size: 223 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Space Battles (working title)
=============================
Space Battles is a WebGL based multiplayer space shooter in top-down perspective.
-------------------------------
###The File Structure
The Project is separated in three main folders:
####client/
Contains any client exclusive data, like models, libraries, templates (for UI), assets and stuff.
####server/
Contains any server exclusive data like models, libraries and stuff.
####shared/
Contains stuff that is used both by frontend and backend. Thats mainly models and some libraries.
####index.html
Thats the main file where the client is executed from - it gets loaded in the browser.
####client.js
Will be loaded from within the index.html and contains the initialization part of the client app.
####server.js
Will be executed within node.js and is the initialization part of the server app.
####.htaccess
Prevents web access of server scripts.