Skip to content

Instantly share code, notes, and snippets.

View robsta's full-sized avatar

Rob Morgan robsta

View GitHub Profile
@robsta
robsta / AS3Singleton.as
Created May 18, 2009 09:15
Singleton Pattern in Actionscript 3.0
package {
public final class Singleton {
/**
* Storage for the singleton instance.
*/
public static const instance:Singleton = new Singleton ( SingletonLock );
/**
* Constructor
*