예제 #1
0
파일: Input.php 프로젝트: laiello/crindigan
 /**
  * Fetches a singleton instance of this class.
  *
  * @return RPG_Input
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }