Is is possible to somehow create a key or seed that you can initialize a random number generator with, and thereby ensuring that all the random numbers using this key will be identical.
Or is there another technique that i can use with similar results?
what i like to be able to do is create a random seed. then use this seed to initialize a random number generator, use this random number generator to build a tilemap or something else that requires alot of random numbers.
Then send the same seed to another client which will be able to generator the excact same map because the random numbers are the same?
Im just curious if something like this is possible, dont really care about platform etc.