(svn r11704) -Codechange: remove another bunch of useless includes.

This commit is contained in:
rubidium
2007-12-26 23:04:26 +00:00
parent c124792fd2
commit 0b1d3e43e5
12 changed files with 12 additions and 12 deletions

View File

@@ -3,10 +3,11 @@
/** @file random_func.cpp */
#include "../stdafx.h"
#include "../variables.h"
#include "random_func.hpp"
#include "bitmath_func.hpp"
uint32 _random_seeds[2][2];
uint32 InteractiveRandom()
{
const uint32 s = _random_seeds[1][0];

View File

@@ -100,4 +100,6 @@ static inline bool Chance16R(const uint a, const uint b, uint32 &r)
return Chance16I(a, b, r);
}
extern uint32 _random_seeds[2][2];
#endif /* RANDOM_FUNC_HPP */