Skip to content

Instantly share code, notes, and snippets.

@felixdae
Created July 21, 2010 13:59
Show Gist options
  • Save felixdae/484520 to your computer and use it in GitHub Desktop.
Save felixdae/484520 to your computer and use it in GitHub Desktop.
private static uint GetUint()
{
m_z = 36969 * (m_z & 65535) + (m_z >> 16);
m_w = 18000 * (m_w & 65535) + (m_w >> 16);
return (m_z << 16) + (m_w & 65535);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment