Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new BetterRandom with the <see cref="seed"/>.
 /// </summary>
 public BetterRandom(int seed)
 {
     Initialize(seed);
     Int     = new IntMethods(this);
     Double  = new DoubleMethods(this);
     Float   = new FloatMethods(this);
     Vector2 = new Vector2Methods(this);
     Vector3 = new Vector3Methods(this);
     Angle   = new AngleMethods(this);
 }
Ejemplo n.º 2
0
            IPlugin PluginFactory.GetPlugin(string pluginName)
            {
                IPlugin result = new IntMethods();

                return(result);
            }