예제 #1
0
파일: RPG.php 프로젝트: laiello/crindigan
 /**
  * Fetches the instance of the input library, instantiating it if
  * necessary.
  * 
  * @return RPG_Input
  */
 public static function input()
 {
     if (self::$_input === null) {
         self::$_input = RPG_Input::getInstance();
     }
     return self::$_input;
 }