spaceconquest.CommonRNG.getRandom C# (CSharp) Method

getRandom() public static method

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