rename OpenRA.Support.Random aka XRandom to MersenneTwister

This commit is contained in:
Matthias Mailänder
2014-05-18 21:53:21 +02:00
parent d7c445b117
commit 187362e80e
15 changed files with 32 additions and 31 deletions

View File

@@ -11,13 +11,13 @@
using System;
using OpenRA.Traits;
using OpenRA.Widgets;
using XRandom = OpenRA.Support.Random;
using OpenRA.Support;
namespace OpenRA.Mods.RA.Widgets.Logic
{
public class CheatsLogic
{
public static XRandom CosmeticRandom = new XRandom();
public static MersenneTwister CosmeticRandom = new MersenneTwister();
[ObjectCreator.UseCtor]
public CheatsLogic(Widget widget, Action onExit, World world)