spaceconquest.CommonRNG.getRandom C# (CSharp) Méthode

getRandom() public static méthode

public static getRandom ( System.Int64 seed ) : System.Int64
seed System.Int64
Résultat System.Int64
        public static Int64 getRandom(Int64 seed)
        {
            Int64 ret = rand.Next();
            return ret;
        }