spaceconquest.CommonRNG.getRandom C# (CSharp) 메소드

getRandom() 공개 정적인 메소드

public static getRandom ( System.Int64 seed ) : System.Int64
seed System.Int64
리턴 System.Int64
        public static Int64 getRandom(Int64 seed)
        {
            Int64 ret = rand.Next();
            return ret;
        }