getSeed() 공개 메소드

public getSeed ( ) : integer | string
리턴 integer | string int, or the string numeric representation of a long in 32-bit systems
예제 #1
0
 /**
  * Gets the level seed
  *
  * @return int
  */
 public function getSeed()
 {
     return $this->provider->getSeed();
 }
예제 #2
0
파일: Level.php 프로젝트: xpyctum/Genisys
 /**
  * Gets the level seed
  *
  * @return int
  */
 public function getSeed() : int
 {
     return (int) $this->provider->getSeed();
 }