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;
        }