Your Ad Here

Posted By

mknize on 04/28/11


Tagged


Versions (?)

Singleton


 / Published in: ActionScript 3
 

  1. private static var _singleton:ThisClass;
  2. public static function get Singleton():ThisClass
  3. {
  4. if(!_singleton)
  5. _singleton = new ThisClass();
  6.  
  7. return _singleton;
  8. }

Report this snippet  

You need to login to post a comment.