Skip to content

Instantly share code, notes, and snippets.

View photonstorm's full-sized avatar

Richard Davey photonstorm

View GitHub Profile
/*
Bullet Manager
*/
GAME.BulletManager = function () {
this.data;
this.container;
this.bulletSpeed = 500;
@photonstorm
photonstorm / SetupSDK.bat
Created April 12, 2012 23:38
SetupSDK.bat
:user_configuration
:: Path to Flex SDK
if exist "C:\User\Rich\flex_sdk_4.1" goto setPC1
if exist "C:\User\Rich\flex_sdk_4.2" goto setPC2
:setPC1
set FLEX_SDK=C:\Users\Rich\flex_sdk_4.1
goto android
@photonstorm
photonstorm / class_test.js
Created November 15, 2011 12:26
JS question
A = function () {
this.title = null;
this.config = new A.Config();
this.test = function () {
console.log( "What scope difference is there between me and A.init() ?" );